render / rpms / qemu

Forked from rpms/qemu 5 months ago
Clone

Blame 0027-sdl2-skip-init-without-outputs.patch

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