mirror of
https://github.com/reactos/reactos.git
synced 2025-05-09 03:37:08 +00:00
[NTOS:FSRTL] Fixed incorrect comparison
This commit is contained in:
parent
d6792047f3
commit
0d01b00871
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ FsRtlpIsDfsEnabled(VOID)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
return ((ULONG)KeyQueryOutput.KeyInfo.Data != 1);
|
||||
return ((*(PULONG)KeyQueryOutput.KeyInfo.Data) != 1);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Reference in a new issue