summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2015-05-05 11:07:17 -0400
committerGerd Hoffmann <kraxel@redhat.com>2015-05-20 10:23:08 +0200
commit3d00ac1a2ee0294fc3d460e6013a5cdd9c73ea6c (patch)
tree200ae6619a489658e142ed751f60ee3c4a41d74c /ui
parent2b2c1a38eeaba5d8bfe92281e9e680361e09ee3b (diff)
downloadqemu-3d00ac1a2ee0294fc3d460e6013a5cdd9c73ea6c.tar.gz
vnc: Don't assert if opening unix socket fails
Reproducer: $ qemu-system-x86_64 -display vnc=unix:/root/i-cant-access-you.sock qemu-system-x86_64: iohandler.c:60: qemu_set_fd_handler2: Assertion `fd >= 0' failed. Aborted (core dumped) Signed-off-by: Cole Robinson <crobinso@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/vnc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/vnc.c b/ui/vnc.c
index 076355d9c5..fe4cd759a1 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -3684,6 +3684,9 @@ void vnc_display_open(const char *id, Error **errp)
/* listen for connects */
if (strncmp(vnc, "unix:", 5) == 0) {
vs->lsock = unix_listen(vnc+5, NULL, 0, errp);
+ if (vs->lsock < 0) {
+ goto fail;
+ }
vs->is_unix = true;
} else {
vs->lsock = inet_listen_opts(sopts, 5900, errp);