From 0f9c8e1dcc645c9da35783ec056888ca0d693f0e Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Tue, 30 Oct 2007 22:03:37 +0000 Subject: [PATCH] fix compilation with full optimizations svn path=/trunk/; revision=29988 --- reactos/lib/rtl/sd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/rtl/sd.c b/reactos/lib/rtl/sd.c index 2f9b113904c..1f3db1ea994 100644 --- a/reactos/lib/rtl/sd.c +++ b/reactos/lib/rtl/sd.c @@ -138,8 +138,8 @@ NTSTATUS NTAPI RtlCopySecurityDescriptor(IN PSECURITY_DESCRIPTOR pSourceSecurityDescriptor, OUT PSECURITY_DESCRIPTOR pDestinationSecurityDescriptor) { - PSID Owner, Group; - PACL Dacl, Sacl; + PSID Owner = NULL, Group = NULL; + PACL Dacl = NULL, Sacl = NULL; BOOLEAN Defaulted, Present; DWORD OwnerLength, GroupLength; PSECURITY_DESCRIPTOR srcSD = pSourceSecurityDescriptor;