mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 13:06:34 +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 TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ((ULONG)KeyQueryOutput.KeyInfo.Data != 1);
|
return ((*(PULONG)KeyQueryOutput.KeyInfo.Data) != 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue