From da9cd736d2e9e32de9b5259aa06f9cf4634377bc Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 9 Feb 2011 09:46:43 +0100 Subject: s3-rpc_client: Fixed an uninitialized variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner Autobuild-User: Günther Deschner Autobuild-Date: Thu Feb 10 18:32:08 CET 2011 on sn-devel-104 --- source3/rpc_client/cli_lsarpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_client') diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 36239f51e1..0dbe813c9b 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -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; -- cgit