1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

s3-rpc_client: Fixed an uninitialized variable.

Signed-off-by: Günther Deschner <gd@samba.org>

Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Thu Feb 10 18:32:08 CET 2011 on sn-devel-104
This commit is contained in:
Andreas Schneider 2011-02-09 09:46:43 +01:00 committed by Günther Deschner
parent 8cffe147eb
commit da9cd736d2

View File

@ -337,7 +337,7 @@ static NTSTATUS dcerpc_lsa_lookup_sids_generic(struct dcerpc_binding_handle *h,
bool use_lookupsids3,
NTSTATUS *presult)
{
NTSTATUS status;
NTSTATUS status = NT_STATUS_OK;
NTSTATUS result = NT_STATUS_OK;
int sids_left = 0;
int sids_processed = 0;