From c23f194bf63d18f185cb013ca020673ced4f7279 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Wed, 4 Aug 2004 02:36:53 +0000 Subject: [PATCH] Fix Compiler warning with -O2 svn path=/trunk/; revision=10388 --- reactos/ntoskrnl/se/sd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/ntoskrnl/se/sd.c b/reactos/ntoskrnl/se/sd.c index 6d0ce45068a..eea40bee4d6 100644 --- a/reactos/ntoskrnl/se/sd.c +++ b/reactos/ntoskrnl/se/sd.c @@ -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;