[NTOS:FSRTL] Fixed incorrect comparison

This commit is contained in:
Ivan Labutin
2017-12-20 06:56:09 +01:00
committed by Timo Kreuzer
parent d6792047f3
commit 0d01b00871
+1 -1
View File
@@ -71,7 +71,7 @@ FsRtlpIsDfsEnabled(VOID)
return TRUE;
}
return ((ULONG)KeyQueryOutput.KeyInfo.Data != 1);
return ((*(PULONG)KeyQueryOutput.KeyInfo.Data) != 1);
}
NTSTATUS