mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
Fix compiling error, feel free to revert this when commiting missing changes (if it's not a typo).
svn path=/trunk/; revision=17867
This commit is contained in:
parent
3d3c2afb41
commit
fbc3848431
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord)
|
||||||
Context.ContextFlags = CONTEXT_FULL;
|
Context.ContextFlags = CONTEXT_FULL;
|
||||||
|
|
||||||
/* Check if we're being debugged (user-mode only) */
|
/* Check if we're being debugged (user-mode only) */
|
||||||
if (!RtlpCheckForActiveDebugger(TRUE))
|
if (!RtlpCheckForActiveDebugger())
|
||||||
{
|
{
|
||||||
/* Raise an exception immediately */
|
/* Raise an exception immediately */
|
||||||
Status = ZwRaiseException(ExceptionRecord, &Context, TRUE);
|
Status = ZwRaiseException(ExceptionRecord, &Context, TRUE);
|
||||||
|
@ -91,7 +91,7 @@ RtlRaiseStatus(NTSTATUS Status)
|
||||||
Context.ContextFlags = CONTEXT_FULL;
|
Context.ContextFlags = CONTEXT_FULL;
|
||||||
|
|
||||||
/* Check if we're being debugged (user-mode only) */
|
/* Check if we're being debugged (user-mode only) */
|
||||||
if (!RtlpCheckForActiveDebugger(TRUE))
|
if (!RtlpCheckForActiveDebugger())
|
||||||
{
|
{
|
||||||
/* Raise an exception immediately */
|
/* Raise an exception immediately */
|
||||||
ZwRaiseException(&ExceptionRecord, &Context, TRUE);
|
ZwRaiseException(&ExceptionRecord, &Context, TRUE);
|
||||||
|
|
Loading…
Reference in a new issue