mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 12:24:48 +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 */
|
/* Return boost status */
|
||||||
*(PULONG)ProcessInformation = Process->Pcb.DisableBoost ?
|
*(PULONG)ProcessInformation = Process->Pcb.DisableBoost ?
|
||||||
FALSE : TRUE;
|
TRUE : FALSE;
|
||||||
|
|
||||||
/* Set the return length */
|
/* Set the return length */
|
||||||
Length = sizeof(ULONG);
|
Length = sizeof(ULONG);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue