Skip to content

Commit 48a35e1

Browse files
committed
ui: fix crash when there are no active_console
Thread 1 "qemu-system-x86" received signal SIGSEGV, Segmentation fault. 0x0000555555888630 in dpy_ui_info_supported (con=0x0) at ../ui/console.c:812 812 return con->hw_ops->ui_info != NULL; (gdb) bt #0 0x0000555555888630 in dpy_ui_info_supported (con=0x0) at ../ui/console.c:812 #1 0x00005555558a44b1 in protocol_client_msg (vs=0x5555578c76c0, data=0x5555581e93f0 <incomplete sequence \373>, len=24) at ../ui/vnc.c:2585 #2 0x00005555558a19ac in vnc_client_read (vs=0x5555578c76c0) at ../ui/vnc.c:1607 #3 0x00005555558a1ac2 in vnc_client_io (ioc=0x5555581eb0e0, condition=G_IO_IN, opaque=0x5555578c76c0) at ../ui/vnc.c:1635 Fixes: https://issues.redhat.com/browse/RHEL-2600 Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Albert Esteve <aesteve@redhat.com>
1 parent 04562ee commit 48a35e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ui/console.c

+3
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,9 @@ bool dpy_ui_info_supported(QemuConsole *con)
806806
if (con == NULL) {
807807
con = active_console;
808808
}
809+
if (con == NULL) {
810+
return false;
811+
}
809812

810813
return con->hw_ops->ui_info != NULL;
811814
}

0 commit comments

Comments
 (0)