On Fri, Jan 20, 2012 at 07:08:27PM -0600, Michael Roth wrote: > diff --git a/main-loop.c b/main-loop.c > index 692381c..62d95b9 100644 > --- a/main-loop.c > +++ b/main-loop.c > @@ -164,7 +164,7 @@ static int qemu_signal_init(void) > > #else /* _WIN32 */ > > -HANDLE qemu_event_handle; > +HANDLE qemu_event_handle = NULL;
Global variables are automatically zeroed, no need to assign NULL.