mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-01 23:07:45 +08:00
x11: Check for a valid video device pointer before dereferencing the name
This commit is contained in:
@@ -307,7 +307,7 @@ static bool X11_ShowMessageBoxImpl(const SDL_MessageBoxData *messageboxdata, int
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Create window */
|
/* Create window */
|
||||||
if (messageboxdata->window && SDL_strcmp(video->name, "x11") == 0) {
|
if (messageboxdata->window && video && SDL_strcmp(video->name, "x11") == 0) {
|
||||||
// Only use the window as a parent if it is from the X11 driver.
|
// Only use the window as a parent if it is from the X11 driver.
|
||||||
parent_window = messageboxdata->window;
|
parent_window = messageboxdata->window;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user