mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
[KERNEL32]: Fix parameter usage in RtlAcquirePrivilege.
svn path=/trunk/; revision=62544
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user