mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 00:50:23 +00:00
Unbreak linking ntoskrnl
svn path=/trunk/; revision=40788
This commit is contained in:
parent
2e9b52a3a5
commit
1bcad99a07
1 changed files with 3 additions and 3 deletions
|
@ -61,7 +61,7 @@ RtlCallVectoredExceptionHandlers(IN PEXCEPTION_RECORD ExceptionRecord,
|
||||||
if (--veh->Refs == 0)
|
if (--veh->Refs == 0)
|
||||||
{
|
{
|
||||||
RemoveEntryList (&veh->ListEntry);
|
RemoveEntryList (&veh->ListEntry);
|
||||||
InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
_InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
||||||
Remove = TRUE;
|
Remove = TRUE;
|
||||||
}
|
}
|
||||||
Ret = TRUE;
|
Ret = TRUE;
|
||||||
|
@ -74,7 +74,7 @@ RtlCallVectoredExceptionHandlers(IN PEXCEPTION_RECORD ExceptionRecord,
|
||||||
{
|
{
|
||||||
CurrentEntry = veh->ListEntry.Flink;
|
CurrentEntry = veh->ListEntry.Flink;
|
||||||
RemoveEntryList (&veh->ListEntry);
|
RemoveEntryList (&veh->ListEntry);
|
||||||
InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
_InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
||||||
RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
|
RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
|
||||||
|
|
||||||
RtlFreeHeap(RtlGetProcessHeap(),
|
RtlFreeHeap(RtlGetProcessHeap(),
|
||||||
|
@ -136,7 +136,7 @@ RtlAddVectoredExceptionHandler(IN ULONG FirstHandler,
|
||||||
InsertTailList(&RtlpVectoredExceptionHead,
|
InsertTailList(&RtlpVectoredExceptionHead,
|
||||||
&veh->ListEntry);
|
&veh->ListEntry);
|
||||||
}
|
}
|
||||||
InterlockedIncrement (&RtlpVectoredExceptionsInstalled);
|
_InterlockedIncrement (&RtlpVectoredExceptionsInstalled);
|
||||||
RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
|
RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue