[NTOS:FSRTL] Fixed incorrect comparison

This commit is contained in:
Ivan Labutin 2017-11-13 15:08:27 +01:00 committed by Timo Kreuzer
parent d6792047f3
commit 0d01b00871

View file

@ -71,7 +71,7 @@ FsRtlpIsDfsEnabled(VOID)
return TRUE;
}
return ((ULONG)KeyQueryOutput.KeyInfo.Data != 1);
return ((*(PULONG)KeyQueryOutput.KeyInfo.Data) != 1);
}
NTSTATUS