Fixed continue in the GDB stub. Sorry for breaking it.

svn path=/trunk/; revision=11713
This commit is contained in:
Art Yerkes 2004-11-20 17:45:15 +00:00
parent b7100ed2fc
commit e2632afc71

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 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 * PROJECT: ReactOS kernel
* FILE: ntoskrnl/ke/catch.c * FILE: ntoskrnl/ke/catch.c
@ -77,6 +77,8 @@ KiDispatchException(PEXCEPTION_RECORD ExceptionRecord,
Action = KdEnterDebuggerException (ExceptionRecord, Context, Tf); Action = KdEnterDebuggerException (ExceptionRecord, Context, Tf);
} }
if (Action == kdContinue) return;
if (Action != kdDoNotHandleException) if (Action != kdDoNotHandleException)
{ {
if (PreviousMode == UserMode) if (PreviousMode == UserMode)