diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-12 21:19:57 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-12 21:19:57 +0000 |
commit | f71903d020667ae704cf803d0cd64f80c879c6d0 (patch) | |
tree | 1ce83f1af2963ed7a8083282fcf1421708c31f64 /aio.c | |
parent | hw/apic.c: use functions from host-utils.h (diff) | |
download | qemu-kvm-f71903d020667ae704cf803d0cd64f80c879c6d0.tar.gz qemu-kvm-f71903d020667ae704cf803d0cd64f80c879c6d0.tar.bz2 qemu-kvm-f71903d020667ae704cf803d0cd64f80c879c6d0.zip |
Make sure to initialize fd_sets in aio.c
This was spotted by valgrind.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5470 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'aio.c')
-rw-r--r-- | aio.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -126,6 +126,9 @@ void qemu_aio_wait(void) walking_handlers = 1; + FD_ZERO(&rdfds); + FD_ZERO(&wrfds); + /* fill fd sets */ LIST_FOREACH(node, &aio_handlers, node) { /* If there aren't pending AIO operations, don't invoke callbacks. |