mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[NTOS]
- Nikolay Myltsev: Fix incorrect balancer thread id check. See issue #5857 for more details. svn path=/trunk/; revision=54528
This commit is contained in:
parent
f88bacce5d
commit
e86ebe01cc
1 changed files with 2 additions and 2 deletions
|
@ -216,8 +216,8 @@ MmRebalanceMemoryConsumers(VOID)
|
|||
static BOOLEAN
|
||||
MiIsBalancerThread(VOID)
|
||||
{
|
||||
return MiBalancerThreadHandle != NULL &&
|
||||
PsGetCurrentThread() == MiBalancerThreadId.UniqueThread;
|
||||
return (MiBalancerThreadHandle != NULL) &&
|
||||
(PsGetCurrentThreadId() == MiBalancerThreadId.UniqueThread);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Reference in a new issue