Activity log for bug #1326533

Date Who What changed Old value New value Message
2014-06-04 21:03:16 Brandon Schaefer bug added bug
2014-06-04 21:03:40 Brandon Schaefer description 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]); } 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]);     } Or possibly put into the loop where the sdl2_console is created
2017-07-06 13:54:17 Thomas Huth qemu: status New Fix Released