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 */
|
/* Check if this is a restricted token */
|
||||||
if (!(AccessState->Flags & TOKEN_IS_RESTRICTED))
|
if (!(AccessState->Flags & TOKEN_IS_RESTRICTED))
|
||||||
{
|
{
|
||||||
/* FIXME: Do the FAST traverse check */
|
/* Do the FAST traverse check */
|
||||||
AccessGranted = FALSE;
|
AccessGranted = SeFastTraverseCheck(OriginalDeviceObject->SecurityDescriptor,
|
||||||
|
AccessState,
|
||||||
|
FILE_TRAVERSE,
|
||||||
|
UserMode);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue