https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0cf5efc14c427534621d3…
commit 0cf5efc14c427534621d343a6cad294b511733f6
Author: Denis Malikov <Getequ(a)users.noreply.github.com>
AuthorDate: Sun Aug 26 20:19:26 2018 +0700
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Sun Aug 26 15:19:26 2018 +0200
[NTOS:KE] Fix stub for KeAcquireInStackQueuedSpinLockForDpc (#814)
Error was found when building as 0x600+.
CORE-12596
---
ntoskrnl/ke/spinlock.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ntoskrnl/ke/spinlock.c b/ntoskrnl/ke/spinlock.c
index 39d92294e5..c6e44a21c0 100644
--- a/ntoskrnl/ke/spinlock.c
+++ b/ntoskrnl/ke/spinlock.c
@@ -415,13 +415,13 @@ KeReleaseSpinLockForDpc(IN PKSPIN_LOCK SpinLock,
/*
* @unimplemented
*/
-KIRQL
+VOID
FASTCALL
KeAcquireInStackQueuedSpinLockForDpc(IN PKSPIN_LOCK SpinLock,
IN PKLOCK_QUEUE_HANDLE LockHandle)
{
UNIMPLEMENTED;
- return 0;
+ return;
}
/*