Revert 17867:17866 change, introduced to temporarily fix tree-compiling. Made obsolete by rev. 17868. Modified: trunk/reactos/lib/rtl/exception.c _____
Modified: trunk/reactos/lib/rtl/exception.c --- trunk/reactos/lib/rtl/exception.c 2005-09-15 19:18:59 UTC (rev 17868) +++ trunk/reactos/lib/rtl/exception.c 2005-09-15 19:30:27 UTC (rev 17869) @@ -39,7 +39,7 @@
Context.ContextFlags = CONTEXT_FULL;
/* Check if we're being debugged (user-mode only) */ - if (!RtlpCheckForActiveDebugger()) + if (!RtlpCheckForActiveDebugger(TRUE)) { /* Raise an exception immediately */ Status = ZwRaiseException(ExceptionRecord, &Context, TRUE); @@ -91,7 +91,7 @@ Context.ContextFlags = CONTEXT_FULL;
/* Check if we're being debugged (user-mode only) */ - if (!RtlpCheckForActiveDebugger()) + if (!RtlpCheckForActiveDebugger(TRUE)) { /* Raise an exception immediately */ ZwRaiseException(&ExceptionRecord, &Context, TRUE);