aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-10-04 13:25:53 +0200
committerGerd Hoffmann <kraxel@redhat.com>2011-10-25 14:00:54 +0200
commit3bb781f3ed91bd3f085ded4d16f089e7b66f1076 (patch)
tree46c5d506d3a991220bac55f5b61a736dfe64d46e /ui
parent4ec8d3077b799fcdd9fe0f38e432791c8fceb88e (diff)
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>
Diffstat (limited to 'ui')
-rw-r--r--ui/spice-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/spice-core.c b/ui/spice-core.c
index 4c06c36c3..be52356e6 100644
--- a/ui/spice-core.c
+++ b/ui/spice-core.c
@@ -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;
}