From: curt Date: Wed, 13 Jun 2001 16:41:02 +0000 (+0000) Subject: Check for a NULL current_panel before shelling out mouse actions to a panel X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6420088452c83d26f4be71a3284601c0f0272be2;p=flightgear.git Check for a NULL current_panel before shelling out mouse actions to a panel method. --- diff --git a/src/GUI/mouse.cxx b/src/GUI/mouse.cxx index 4b435b297..d80ead445 100644 --- a/src/GUI/mouse.cxx +++ b/src/GUI/mouse.cxx @@ -542,7 +542,9 @@ void guiMouseFunc(int button, int updown, int x, int y) // know what's going on. if (mouse_mode == MOUSE_POINTER) { if (!puMouse (button, updown, x,y)) { - current_panel->doMouseAction(button, updown, x, y); + if ( current_panel != NULL ) { + current_panel->doMouseAction(button, updown, x, y); + } } }