Fixed continue in the GDB stub. Sorry for breaking it.
authorArt Yerkes <art.yerkes@gmail.com>
Sat, 20 Nov 2004 17:45:15 +0000 (17:45 +0000)
committerArt Yerkes <art.yerkes@gmail.com>
Sat, 20 Nov 2004 17:45:15 +0000 (17:45 +0000)
svn path=/trunk/; revision=11713

reactos/ntoskrnl/ke/catch.c

index a1e7f7f..606494c 100644 (file)
@@ -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)