mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
Fixed continue in the GDB stub. Sorry for breaking it.
svn path=/trunk/; revision=11713
This commit is contained in:
parent
b7100ed2fc
commit
e2632afc71
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue