mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[NTOS:FSRTL] Fixed incorrect comparison
This commit is contained in:
committed by
Timo Kreuzer
parent
d6792047f3
commit
0d01b00871
@@ -71,7 +71,7 @@ FsRtlpIsDfsEnabled(VOID)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return ((ULONG)KeyQueryOutput.KeyInfo.Data != 1);
|
||||
return ((*(PULONG)KeyQueryOutput.KeyInfo.Data) != 1);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
||||
Reference in New Issue
Block a user