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--;
goto end;
}
end:
@ -335,6 +334,7 @@ IrpQueueCompletePacket(_In_ PVOID Buffer, _In_ ULONG BufferSize)
return status;
}
STATIC
VOID
IrpQueueFreeDeferredPackets()
{

View file

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