From: Pierre Schweitzer Date: Sat, 17 Nov 2018 16:36:18 +0000 (+0100) Subject: [NTOSKRNL] ExfReleaseRundownProtectionCacheAware*() functions don't return anything X-Git-Tag: 0.4.12-dev~188 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=4f1e9252f18c687d2933f5366af82dbc90c3c77d;hp=7ed17cd71406eac9f37a231b6322a9d5060b6574 [NTOSKRNL] ExfReleaseRundownProtectionCacheAware*() functions don't return anything --- diff --git a/ntoskrnl/ex/rundown.c b/ntoskrnl/ex/rundown.c index 00e2c3b7724..e413fa2c7d4 100644 --- a/ntoskrnl/ex/rundown.c +++ b/ntoskrnl/ex/rundown.c @@ -413,7 +413,7 @@ ExfReleaseRundownProtectionCacheAware(IN PEX_RUNDOWN_REF_CACHE_AWARE RunRefCache PEX_RUNDOWN_REF RunRef; RunRef = ExGetRunRefForGivenProcessor(RunRefCacheAware, KeGetCurrentProcessorNumber()); - return _ExReleaseRundownProtection(RunRef); + _ExReleaseRundownProtection(RunRef); } /* @@ -427,7 +427,7 @@ ExfReleaseRundownProtectionCacheAwareEx(IN PEX_RUNDOWN_REF_CACHE_AWARE RunRefCac PEX_RUNDOWN_REF RunRef; RunRef = ExGetRunRefForGivenProcessor(RunRefCacheAware, KeGetCurrentProcessorNumber()); - return ExfReleaseRundownProtectionEx(RunRef, Count); + ExfReleaseRundownProtectionEx(RunRef, Count); } /*