mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
[LSASRV]
Fix uninitialized variable. CORE-7303 #resolve #comment Fixed! svn path=/trunk/; revision=59233
This commit is contained in:
parent
9190ce5a77
commit
d00ff48b65
1 changed files with 1 additions and 1 deletions
|
@ -2178,7 +2178,7 @@ NTSTATUS WINAPI LsarEnumerateAccountRights(
|
|||
PRPC_UNICODE_STRING RightsBuffer = NULL;
|
||||
PRPC_UNICODE_STRING PrivilegeString;
|
||||
ACCESS_MASK SystemAccess;
|
||||
ULONG RightsCount;
|
||||
ULONG RightsCount = 0;
|
||||
ULONG RightsIndex;
|
||||
ULONG i;
|
||||
NTSTATUS Status;
|
||||
|
|
Loading…
Reference in a new issue