diff options
Diffstat (limited to 'results/scraper/launchpad-without-comments/1326533')
| -rw-r--r-- | results/scraper/launchpad-without-comments/1326533 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1326533 b/results/scraper/launchpad-without-comments/1326533 new file mode 100644 index 000000000..423174ba2 --- /dev/null +++ b/results/scraper/launchpad-without-comments/1326533 @@ -0,0 +1,19 @@ +SDL2 UI sends a NULL to sdl_grab_start if fullscreen, which crashes + +in ui/sdl2.c: + + if (full_screen) { + gui_fullscreen = 1; + sdl_grab_start(0); + } + +Is sent, but no null checks are made in sdl_grab_start (its assumed to be an allocated pointer). So a crash happens if you start qemu -full-screen. + +It should at lease send the first [0] of the newly allocated sdl2_console through. + +Quickly looking around should look something like: + + if (full_screen) { + gui_fullscreen = 1; + sdl_grab_start(&sdl2_console[0]); + } \ No newline at end of file |