From 64b26affe0afa2999130cdd4f1d521dccd877c9c Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 3 Aug 2010 15:55:20 +0200 Subject: s3-dcerpc: fix some uninitialized variables build warnings. Guenther --- source3/rpc_client/cli_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_client') diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 2bb9aad9e3..b38000ea94 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -2746,7 +2746,7 @@ NTSTATUS cli_rpc_pipe_open_ntlmssp(struct cli_state *cli, struct rpc_pipe_client **presult) { struct rpc_pipe_client *result; - struct pipe_auth_data *auth; + struct pipe_auth_data *auth = NULL; enum dcerpc_AuthType auth_type = DCERPC_AUTH_TYPE_NTLMSSP; NTSTATUS status; -- cgit