mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:56:00 +00:00
[KERNEL32]: Fix parameter usage in RtlAcquirePrivilege.
svn path=/trunk/; revision=62544
This commit is contained in:
parent
d30892cbc2
commit
2e7eea8043
1 changed files with 1 additions and 1 deletions
|
@ -3874,7 +3874,7 @@ StartScan:
|
|||
{
|
||||
/* Acquire the required privilege so that the kernel won't fail the call */
|
||||
PrivilegeValue = SE_LOCK_MEMORY_PRIVILEGE;
|
||||
Status = RtlAcquirePrivilege(&PrivilegeValue, TRUE, FALSE, &PrivilegeState);
|
||||
Status = RtlAcquirePrivilege(&PrivilegeValue, 1, 0, &PrivilegeState);
|
||||
if (NT_SUCCESS(Status))
|
||||
{
|
||||
/* Remember to release it later */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue