From e2632afc7159bc08e61acfe01088b3ebe0bb730f Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Sat, 20 Nov 2004 17:45:15 +0000 Subject: [PATCH] Fixed continue in the GDB stub. Sorry for breaking it. svn path=/trunk/; revision=11713 --- reactos/ntoskrnl/ke/catch.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ke/catch.c b/reactos/ntoskrnl/ke/catch.c index a1e7f7f4ef0..606494c1dca 100644 --- a/reactos/ntoskrnl/ke/catch.c +++ b/reactos/ntoskrnl/ke/catch.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: catch.c,v 1.54 2004/11/18 02:10:28 arty Exp $ +/* $Id: catch.c,v 1.55 2004/11/20 17:45:15 arty Exp $ * * PROJECT: ReactOS kernel * FILE: ntoskrnl/ke/catch.c @@ -77,6 +77,8 @@ KiDispatchException(PEXCEPTION_RECORD ExceptionRecord, Action = KdEnterDebuggerException (ExceptionRecord, Context, Tf); } + if (Action == kdContinue) return; + if (Action != kdDoNotHandleException) { if (PreviousMode == UserMode)