mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 22:52:58 +00:00
[NTOS]: Use the correct access rights for ZwOpenDirectoryObject call.
svn path=/trunk/; revision=74585
This commit is contained in:
parent
2e25bf12d0
commit
6ab86eb6cc
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ xHalpGetRDiskCount(VOID)
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
Status = ZwOpenDirectoryObject (&DirectoryHandle,
|
Status = ZwOpenDirectoryObject (&DirectoryHandle,
|
||||||
SYMBOLIC_LINK_ALL_ACCESS,
|
DIRECTORY_ALL_ACCESS,
|
||||||
&ObjectAttributes);
|
&ObjectAttributes);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue