mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[LSASRV]
Open the caller process using more access rights in order to be able to allocate memory in the callers address space and to be able to write into the allocated memory. svn path=/trunk/; revision=58816
This commit is contained in:
parent
7029a8be32
commit
3a18230542
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ LsapCheckLogonProcess(PLSA_API_MSG RequestMsg,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
Status = NtOpenProcess(&ProcessHandle,
|
Status = NtOpenProcess(&ProcessHandle,
|
||||||
PROCESS_VM_READ,
|
PROCESS_VM_READ | PROCESS_VM_WRITE | PROCESS_VM_OPERATION,
|
||||||
&ObjectAttributes,
|
&ObjectAttributes,
|
||||||
&RequestMsg->h.ClientId);
|
&RequestMsg->h.ClientId);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
|
|
Loading…
Reference in a new issue