Re: [Qemu-devel] [PATCH 2/2] test-aio: Fix event notifier cleanup

2015-11-23 Thread Paolo Bonzini
On 23/11/2015 13:39, Kevin Wolf wrote: > One test case closed an event notifier (event_notifier_cleanup()) > without first disabling it (set_event_notifier(..., NULL)). This > resulted in a leftover handle 0 that was added to each subsequent > WaitForMultipleObjects() call, causing the function t

[Qemu-devel] [PATCH 2/2] test-aio: Fix event notifier cleanup

2015-11-23 Thread Kevin Wolf
One test case closed an event notifier (event_notifier_cleanup()) without first disabling it (set_event_notifier(..., NULL)). This resulted in a leftover handle 0 that was added to each subsequent WaitForMultipleObjects() call, causing the function to fail (invalid handle). Signed-off-by: Kevin Wo