summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorJan Kiszka2009-04-29 20:38:28 +0200
committerBlue Swirl2009-04-29 20:38:28 +0200
commita7e21219b0ec6991aa90c18cfde4d6890710bf6d (patch)
tree05244fdabea8812f7fa848b6f1f36662c278f0c6 /vl.c
parentFix powerpc 604 reset vector (diff)
downloadqemu-a7e21219b0ec6991aa90c18cfde4d6890710bf6d.tar.gz
qemu-a7e21219b0ec6991aa90c18cfde4d6890710bf6d.tar.xz
qemu-a7e21219b0ec6991aa90c18cfde4d6890710bf6d.zip
Fix qemu_event_init
Falling through to "fail" made qemu_event_init() close the pipe fds immediately again, breaking timer event notification. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vl.c b/vl.c
index a210b6cdd2..ac4b32fded 100644
--- a/vl.c
+++ b/vl.c
@@ -3713,6 +3713,8 @@ static int qemu_event_init(void)
(void *)(unsigned long)fds[0]);
io_thread_fd = fds[1];
+ return 0;
+
fail:
close(fds[0]);
close(fds[1]);