Fix Compiler warning with -O2

svn path=/trunk/; revision=10385
This commit is contained in:
Alex Ionescu 2004-08-04 00:45:36 +00:00
parent 1740e56356
commit 47b5abbd99

View file

@ -319,10 +319,10 @@ NtSetSecurityObject(IN HANDLE Handle,
PSECURITY_DESCRIPTOR NewSd; PSECURITY_DESCRIPTOR NewSd;
POBJECT_HEADER Header; POBJECT_HEADER Header;
PVOID Object; PVOID Object;
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;