check for NULL pointer in IsExtensionInList()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56692 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-11-06 23:31:26 +00:00
parent 1621f192d9
commit 442e842ee7

View File

@@ -118,6 +118,9 @@ void wxGLCanvasBase::OnSize(wxSizeEvent& WXUNUSED(event))
/* static */ /* static */
bool wxGLCanvasBase::IsExtensionInList(const char *list, const char *extension) bool wxGLCanvasBase::IsExtensionInList(const char *list, const char *extension)
{ {
if ( !list )
return false;
for ( const char *p = list; *p; p++ ) for ( const char *p = list; *p; p++ )
{ {
// advance up to the next possible match // advance up to the next possible match