Fix Compiler warning with -O2

svn path=/trunk/; revision=10382
This commit is contained in:
Alex Ionescu 2004-08-04 00:18:01 +00:00
parent 0cff98313c
commit 2aa9311ef8

View file

@ -157,10 +157,10 @@ NtQuerySecurityObject(IN HANDLE Handle,
POBJECT_HEADER Header; POBJECT_HEADER Header;
PVOID Object; PVOID Object;
PSECURITY_DESCRIPTOR ObjectSd; PSECURITY_DESCRIPTOR ObjectSd;
PSID Owner; PSID Owner = 0;
PSID Group; PSID Group = 0;
PACL Dacl; PACL Dacl = 0;
PACL Sacl; PACL Sacl = 0;
ULONG OwnerLength = 0; ULONG OwnerLength = 0;
ULONG GroupLength = 0; ULONG GroupLength = 0;
ULONG DaclLength = 0; ULONG DaclLength = 0;