summaryrefslogtreecommitdiffstats
path: root/ui/spice-display.c
diff options
context:
space:
mode:
authorGerd Hoffmann2014-04-07 12:15:44 +0200
committerGerd Hoffmann2014-04-07 12:18:43 +0200
commitdc491cfc14074064ed54a872b62cce6ca1330644 (patch)
treeab3beed9922114eb10e4318200345576017b694c /ui/spice-display.c
parenttarget-i386: reorder fields in cpu/msr_hyperv_hypercall subsection (diff)
downloadqemu-dc491cfc14074064ed54a872b62cce6ca1330644.tar.gz
qemu-dc491cfc14074064ed54a872b62cce6ca1330644.tar.xz
qemu-dc491cfc14074064ed54a872b62cce6ca1330644.zip
spice: monitors_config: check pointer before dereferencing
Reported-by: Fabio Fantoni <fabio.fantoni@m2r.biz> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/spice-display.c')
-rw-r--r--ui/spice-display.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/spice-display.c b/ui/spice-display.c
index e28698c6b6..ce6b220f55 100644
--- a/ui/spice-display.c
+++ b/ui/spice-display.c
@@ -549,6 +549,10 @@ static int interface_client_monitors_config(QXLInstance *sin,
QemuUIInfo info;
int rc;
+ if (!mc) {
+ return 1;
+ }
+
/*
* FIXME: multihead is tricky due to the way
* spice has multihead implemented.