From 5363d6e62c2d4d3275e78d04c48835524c54f620 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 12 Nov 2009 13:56:33 -0800 Subject: Ensure all callers to the rpc_client/cli_pipe functions correctly initialize return variables. Jeremy. --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index 435ede904e..6a3e73c710 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3668,7 +3668,7 @@ static void browse_fn(const char *name, uint32 m, static bool browse_host_rpc(bool sort) { NTSTATUS status; - struct rpc_pipe_client *pipe_hnd; + struct rpc_pipe_client *pipe_hnd = NULL; TALLOC_CTX *frame = talloc_stackframe(); WERROR werr; struct srvsvc_NetShareInfoCtr info_ctr; -- cgit