]> Git Repo - qemu.git/commitdiff
sdl2: skip init without outputs
authorGerd Hoffmann <[email protected]>
Wed, 1 Jun 2016 14:08:36 +0000 (16:08 +0200)
committerGerd Hoffmann <[email protected]>
Fri, 3 Jun 2016 06:23:26 +0000 (08:23 +0200)
Signed-off-by: Gerd Hoffmann <[email protected]>
Tested-by: Cole Robinson <[email protected]>
Message-id: 1464790116[email protected]

ui/sdl2.c

index 909038f81d5be9e5c82728ca3d9c8ef996d62a2f..30d2a3c35d4de19687a8d180fc1c94fb078d2b07 100644 (file)
--- a/ui/sdl2.c
+++ b/ui/sdl2.c
@@ -794,6 +794,9 @@ void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
         }
     }
     sdl2_num_outputs = i;
+    if (sdl2_num_outputs == 0) {
+        return;
+    }
     sdl2_console = g_new0(struct sdl2_console, sdl2_num_outputs);
     for (i = 0; i < sdl2_num_outputs; i++) {
         QemuConsole *con = qemu_console_lookup_by_index(i);
This page took 0.027879 seconds and 4 git commands to generate.