projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c426e4
)
sdl2: skip init without outputs
author
Gerd Hoffmann
<kraxel@redhat.com>
Wed, 1 Jun 2016 14:08:36 +0000
(16:08 +0200)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Fri, 3 Jun 2016 06:23:26 +0000
(08:23 +0200)
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Tested-by: Cole Robinson <crobinso@redhat.com>
Message-id:
1464790116
-32405-1-git-send-email-kraxel@redhat.com
ui/sdl2.c
patch
|
blob
|
history
diff --git
a/ui/sdl2.c
b/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);