Commit 7fb44925 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed cont/pass mismatch.

parent 7bec5c16
...@@ -573,7 +573,7 @@ static void DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL ...@@ -573,7 +573,7 @@ static void DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
if (DEBUG_ExitMode == EXIT_QUIT || DEBUG_ExitMode == EXIT_DETACH) if (DEBUG_ExitMode == EXIT_QUIT || DEBUG_ExitMode == EXIT_DETACH)
break; break;
if (DEBUG_ValidateRegisters()) { if (DEBUG_ValidateRegisters()) {
if (DEBUG_ExitMode == EXIT_PASS || first_chance) if (DEBUG_ExitMode == EXIT_CONTINUE || first_chance)
break; break;
DEBUG_Printf(DBG_CHN_MESG, "Cannot pass on last chance exception. You must use cont\n"); DEBUG_Printf(DBG_CHN_MESG, "Cannot pass on last chance exception. You must use cont\n");
} }
......
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