mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 00:10:39 +00:00
- Fix a typo: if a process has DisableBoost set then TRUE should be returned when querying ProcessPriorityBoost information, not FALSE.
svn path=/trunk/; revision=38551
This commit is contained in:
parent
8935e052bf
commit
2882b5579f
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
|||
{
|
||||
/* Return boost status */
|
||||
*(PULONG)ProcessInformation = Process->Pcb.DisableBoost ?
|
||||
FALSE : TRUE;
|
||||
TRUE : FALSE;
|
||||
|
||||
/* Set the return length */
|
||||
Length = sizeof(ULONG);
|
||||
|
|
Loading…
Reference in a new issue