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:
@@ -118,6 +118,9 @@ void wxGLCanvasBase::OnSize(wxSizeEvent& WXUNUSED(event))
|
||||
/* static */
|
||||
bool wxGLCanvasBase::IsExtensionInList(const char *list, const char *extension)
|
||||
{
|
||||
if ( !list )
|
||||
return false;
|
||||
|
||||
for ( const char *p = list; *p; p++ )
|
||||
{
|
||||
// advance up to the next possible match
|
||||
|
Reference in New Issue
Block a user