This commit is contained in:
donnaskiez 2024-05-05 22:00:08 +10:00
parent 30ab652a56
commit 37f176e83e
2 changed files with 2 additions and 1 deletions

View file

@ -216,7 +216,6 @@ IrpQueueQueryPendingPackets(_In_ PIRP Irp)
} }
queue->deferred_reports.count--; queue->deferred_reports.count--;
goto end;
} }
end: end:
@ -335,6 +334,7 @@ IrpQueueCompletePacket(_In_ PVOID Buffer, _In_ ULONG BufferSize)
return status; return status;
} }
STATIC
VOID VOID
IrpQueueFreeDeferredPackets() IrpQueueFreeDeferredPackets()
{ {

View file

@ -1390,6 +1390,7 @@ ValidateThreadsViaKernelApc()
SetApcAllocationInProgress(context); SetApcAllocationInProgress(context);
EnumerateThreadListWithCallbackRoutine(ValidateThreadViaKernelApcCallback, EnumerateThreadListWithCallbackRoutine(ValidateThreadViaKernelApcCallback,
context); context);
__debugbreak();
UnsetApcAllocationInProgress(context); UnsetApcAllocationInProgress(context);
return status; return status;
} }