mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:45:53 +00:00
Fix Compiler warning with -O2
svn path=/trunk/; revision=10388
This commit is contained in:
parent
08f1890738
commit
c23f194bf6
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: sd.c,v 1.18 2004/08/03 19:20:39 ion Exp $
|
||||
/* $Id: sd.c,v 1.19 2004/08/04 02:36:53 ion Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -138,10 +138,10 @@ SeQuerySecurityDescriptorInfo(IN PSECURITY_INFORMATION SecurityInformation,
|
|||
IN PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor OPTIONAL)
|
||||
{
|
||||
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…
Add table
Add a link
Reference in a new issue