kernel32: Initialize events correctly.

This commit is contained in:
Marcus Meissner 2009-01-26 21:52:39 +01:00 committed by Alexandre Julliard
parent ea4c70a1bd
commit e1d9a793be
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ static void doDebugger(int argc, char** argv)
{
const char* logfile;
debugger_blackbox_t blackbox;
HANDLE start_event, done_event, debug_event;
HANDLE start_event = 0, done_event = 0, debug_event;
blackbox.argc=argc;
logfile=(argc >= 4 ? argv[3] : NULL);