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:
parent
1621f192d9
commit
442e842ee7
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue