- Don't continue execution if there is no exception handler. It's common that continuing such execution would result in the same exception again and thus creating infinite loop.

svn path=/trunk/; revision=9990
This commit is contained in:
Filip Navara 2004-07-04 02:01:02 +00:00
parent 9ac102fb17
commit 31456c578a

View file

@ -1,4 +1,4 @@
/* $Id: exception.c,v 1.1 2004/06/25 01:41:20 hyperion Exp $
/* $Id: exception.c,v 1.2 2004/07/04 02:01:02 navaraf Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -231,6 +231,8 @@ RtlpDispatchException(IN PEXCEPTION_RECORD ExceptionRecord,
DPRINT("RtlpDispatchException(): Return ExceptionContinueExecution\n");
ExceptionRecord->ExceptionFlags = EXCEPTION_NONCONTINUABLE;
return ExceptionContinueExecution;
}