Author: ekohl
Date: Sun Jun 16 16:24:45 2013
New Revision: 59233
URL:
http://svn.reactos.org/svn/reactos?rev=59233&view=rev
Log:
[LSASRV]
Fix uninitialized variable.
CORE-7303 #resolve #comment Fixed!
Modified:
trunk/reactos/dll/win32/lsasrv/lsarpc.c
Modified: trunk/reactos/dll/win32/lsasrv/lsarpc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lsasrv/lsarpc.c?…
==============================================================================
--- trunk/reactos/dll/win32/lsasrv/lsarpc.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/lsasrv/lsarpc.c [iso-8859-1] Sun Jun 16 16:24:45 2013
@@ -2178,7 +2178,7 @@
PRPC_UNICODE_STRING RightsBuffer = NULL;
PRPC_UNICODE_STRING PrivilegeString;
ACCESS_MASK SystemAccess;
- ULONG RightsCount;
+ ULONG RightsCount = 0;
ULONG RightsIndex;
ULONG i;
NTSTATUS Status;