Commit e1d9a793 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

kernel32: Initialize events correctly.

parent ea4c70a1
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment