Commit c4ad5eeb authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: Make default behavior more consistent when AeDebug key is not present.

parent 18c9e5d5
......@@ -186,7 +186,7 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
UNICODE_STRING nameW;
char *cmdline, *env, *p;
HANDLE hDbgConf;
DWORD bAuto = FALSE;
DWORD bAuto = TRUE;
PROCESS_INFORMATION info;
STARTUPINFOA startup;
char* format = NULL;
......@@ -260,7 +260,6 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
bAuto = atoiW( str );
}
}
else bAuto = TRUE;
NtClose(hDbgConf);
}
......
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