mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
Fix Compiler warning with -O2
svn path=/trunk/; revision=10385
This commit is contained in:
parent
1740e56356
commit
47b5abbd99
1 changed files with 4 additions and 4 deletions
|
@ -319,10 +319,10 @@ NtSetSecurityObject(IN HANDLE Handle,
|
|||
PSECURITY_DESCRIPTOR NewSd;
|
||||
POBJECT_HEADER Header;
|
||||
PVOID Object;
|
||||
PSID Owner;
|
||||
PSID Group;
|
||||
PACL Dacl;
|
||||
PACL Sacl;
|
||||
PSID Owner = 0;
|
||||
PSID Group = 0;
|
||||
PACL Dacl = 0;
|
||||
PACL Sacl = 0;
|
||||
ULONG OwnerLength = 0;
|
||||
ULONG GroupLength = 0;
|
||||
ULONG DaclLength = 0;
|
||||
|
|
Loading…
Reference in a new issue