sim-card
/
qemu
Archived
10
0
Fork 0

ui/spice-core: fix segfault in monitor

Fix segfault if a qxl device is present but no spice command line
argument is given.

RHBZ 743251.

Signed-off-by: Alon Levy <alevy@redhat.com>
This commit is contained in:
Alon Levy 2011-10-04 13:25:53 +02:00 committed by Gerd Hoffmann
parent 4ec8d3077b
commit 3bb781f3ed
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ void do_info_spice(Monitor *mon, QObject **ret_data)
int port, tls_port;
char version_string[20]; /* 12 = |255.255.255\0| is the max */
if (!spice_server) {
if (!spice_server || !opts) {
*ret_data = qobject_from_jsonf("{ 'enabled': false }");
return;
}