commit | a7e21219b0ec6991aa90c18cfde4d6890710bf6d | [log] [tgz] |
---|---|---|
author | Jan Kiszka <jan.kiszka@web.de> | Wed Apr 29 18:38:28 2009 +0000 |
committer | Blue Swirl <blauwirbel@gmail.com> | Wed Apr 29 18:38:28 2009 +0000 |
tree | 05244fdabea8812f7fa848b6f1f36662c278f0c6 | |
parent | 2d3eb7bfd9f91f17a22dc6d75bdb8eec25937a55 [diff] [blame] |
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>
diff --git a/vl.c b/vl.c index a210b6c..ac4b32f 100644 --- a/vl.c +++ b/vl.c
@@ -3713,6 +3713,8 @@ (void *)(unsigned long)fds[0]); io_thread_fd = fds[1]; + return 0; + fail: close(fds[0]); close(fds[1]);