From 7fb449256d748045a27f20d8bfa176afe24166de Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Sat, 25 May 2002 22:04:13 +0000 Subject: [PATCH] Fixed cont/pass mismatch. --- debugger/winedbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugger/winedbg.c b/debugger/winedbg.c index a85920da4df..cf7acad5e81 100644 --- a/debugger/winedbg.c +++ b/debugger/winedbg.c @@ -573,7 +573,7 @@ static void DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL if (DEBUG_ExitMode == EXIT_QUIT || DEBUG_ExitMode == EXIT_DETACH) break; if (DEBUG_ValidateRegisters()) { - if (DEBUG_ExitMode == EXIT_PASS || first_chance) + if (DEBUG_ExitMode == EXIT_CONTINUE || first_chance) break; DEBUG_Printf(DBG_CHN_MESG, "Cannot pass on last chance exception. You must use cont\n"); }