ion(a)svn.reactos.com wrote:
Return valid status
Modified: trunk/reactos/lib/rtl/exception.c
------------------------------------------------------------------------
*Modified: trunk/reactos/lib/rtl/exception.c*
--- trunk/reactos/lib/rtl/exception.c 2005-09-15 13:25:32 UTC (rev 17859)
+++ trunk/reactos/lib/rtl/exception.c 2005-09-15 14:07:37 UTC (rev 17860)
@@ -39,10 +39,10 @@
Context.ContextFlags = CONTEXT_FULL;
/* Check if we're being debugged (user-mode only) */
- if (!RtlpCheckForActiveDebugger())
+ if (!RtlpCheckForActiveDebugger(TRUE))
RtlpCheckForActiveDebugger is defined as
BOOLEAN
NTAPI
RtlpCheckForActiveDebugger(VOID);
- Hartmut