--- 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);