mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[NTOSKRNL]
Fix a fixme in IopParseDevice() by calling SeFastTraverseCheck for traverse access check svn path=/trunk/; revision=58231
This commit is contained in:
parent
e6f8602d9d
commit
705173ebd5
1 changed files with 5 additions and 2 deletions
|
@ -335,8 +335,11 @@ IopParseDevice(IN PVOID ParseObject,
|
|||
/* Check if this is a restricted token */
|
||||
if (!(AccessState->Flags & TOKEN_IS_RESTRICTED))
|
||||
{
|
||||
/* FIXME: Do the FAST traverse check */
|
||||
AccessGranted = FALSE;
|
||||
/* Do the FAST traverse check */
|
||||
AccessGranted = SeFastTraverseCheck(OriginalDeviceObject->SecurityDescriptor,
|
||||
AccessState,
|
||||
FILE_TRAVERSE,
|
||||
UserMode);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue