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=10382
This commit is contained in:
parent
0cff98313c
commit
2aa9311ef8
1 changed files with 4 additions and 4 deletions
|
@ -157,10 +157,10 @@ NtQuerySecurityObject(IN HANDLE Handle,
|
|||
POBJECT_HEADER Header;
|
||||
PVOID Object;
|
||||
PSECURITY_DESCRIPTOR ObjectSd;
|
||||
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