another WineDbg fix

Eric Pouech eric.pouech at wanadoo.fr
Sat May 25 13:48:18 CDT 2002


as Sylvain Petreolle reported, WineDbg got mixed up between
cont and pass commands
this should fix the issue
A+
-------------- next part --------------
Name:          dbg_contpass
ChangeLog:     fixed cont/pass mismatch
License:       X11
GenDate:       2002/05/25 18:47:06 UTC
ModifiedFiles: debugger/winedbg.c
AddedFiles:    
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/debugger/winedbg.c,v
retrieving revision 1.51
diff -u -u -r1.51 winedbg.c
--- debugger/winedbg.c	11 May 2002 23:06:32 -0000	1.51
+++ debugger/winedbg.c	25 May 2002 18:46:15 -0000
@@ -563,7 +573,7 @@
             if (DEBUG_ExitMode == EXIT_QUIT || DEBUG_ExitMode == EXIT_DETACH)
                 break;
 	    if (DEBUG_ValidateRegisters()) {
-		if (DEBUG_ExitMode == EXIT_PASS || first_chance)
+		if (DEBUG_ExitMode == EXIT_CONT || first_chance)
 		    break;
 		DEBUG_Printf(DBG_CHN_MESG, "Cannot pass on last chance exception. You must use cont\n");
 	    }


More information about the wine-patches mailing list