mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +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;
|
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;
|
||||||
|
|
Loading…
Reference in a new issue