mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NTOSKRNL] ExfReleaseRundownProtectionCacheAware*() functions don't return anything
This commit is contained in:
parent
7ed17cd714
commit
4f1e9252f1
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue