cf91b1d
From: Gerd Hoffmann <kraxel@redhat.com>
cf91b1d
Date: Wed, 1 Jun 2016 16:08:36 +0200
cf91b1d
Subject: [PATCH] sdl2: skip init without outputs
cf91b1d
cf91b1d
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
cf91b1d
Tested-by: Cole Robinson <crobinso@redhat.com>
cf91b1d
Message-id: 1464790116-32405-1-git-send-email-kraxel@redhat.com
cf91b1d
(cherry picked from commit 8efa5f29f83816ae34f428143de49acbaacccb24)
cf91b1d
---
cf91b1d
 ui/sdl2.c | 3 +++
cf91b1d
 1 file changed, 3 insertions(+)
cf91b1d
cf91b1d
diff --git a/ui/sdl2.c b/ui/sdl2.c
cf91b1d
index 909038f..30d2a3c 100644
cf91b1d
--- a/ui/sdl2.c
cf91b1d
+++ b/ui/sdl2.c
cf91b1d
@@ -794,6 +794,9 @@ void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
cf91b1d
         }
cf91b1d
     }
cf91b1d
     sdl2_num_outputs = i;
cf91b1d
+    if (sdl2_num_outputs == 0) {
cf91b1d
+        return;
cf91b1d
+    }
cf91b1d
     sdl2_console = g_new0(struct sdl2_console, sdl2_num_outputs);
cf91b1d
     for (i = 0; i < sdl2_num_outputs; i++) {
cf91b1d
         QemuConsole *con = qemu_console_lookup_by_index(i);