Re: [Qemu-devel] [PATCH] aio-win32: fix uninitialized use of have_select_revents

2014-09-15 Thread Stefan Hajnoczi
On Fri, Sep 12, 2014 at 12:08:49PM +0200, Paolo Bonzini wrote: > Always initialize it with the return value of aio_prepare. > > Reported-by: TeLeMan > Signed-off-by: Paolo Bonzini > --- > aio-win32.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Thanks, applied to my block tree:

Re: [Qemu-devel] [PATCH] aio-win32: fix uninitialized use of have_select_revents

2014-09-14 Thread Fam Zheng
On Fri, 09/12 12:08, Paolo Bonzini wrote: > Always initialize it with the return value of aio_prepare. > > Reported-by: TeLeMan > Signed-off-by: Paolo Bonzini > --- > aio-win32.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/aio-win32.c b/aio-win32.c > index 61e3

Re: [Qemu-devel] [PATCH] aio-win32: fix uninitialized use of have_select_revents

2014-09-12 Thread Stefan Hajnoczi
On Fri, Sep 12, 2014 at 12:08:49PM +0200, Paolo Bonzini wrote: > Always initialize it with the return value of aio_prepare. > > Reported-by: TeLeMan > Signed-off-by: Paolo Bonzini > --- > aio-win32.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Stefan Hajnoczi pg

[Qemu-devel] [PATCH] aio-win32: fix uninitialized use of have_select_revents

2014-09-12 Thread Paolo Bonzini
Always initialize it with the return value of aio_prepare. Reported-by: TeLeMan Signed-off-by: Paolo Bonzini --- aio-win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio-win32.c b/aio-win32.c index 61e3d2d..7daeae1 100644 --- a/aio-win32.c +++ b/aio-win32.c @@ -28