diff options
author | Günther Deschner <gd@samba.org> | 2010-08-03 15:55:20 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-08-03 15:57:56 +0200 |
commit | 64b26affe0afa2999130cdd4f1d521dccd877c9c (patch) | |
tree | 07a60a33341a219d03379b9cfb06ba67cf88244c /source3/rpc_client | |
parent | bf19a5228aa582e35d1447cb918a1f66bfdf8b2d (diff) | |
download | samba-64b26affe0afa2999130cdd4f1d521dccd877c9c.tar.gz samba-64b26affe0afa2999130cdd4f1d521dccd877c9c.tar.bz2 samba-64b26affe0afa2999130cdd4f1d521dccd877c9c.zip |
s3-dcerpc: fix some uninitialized variables build warnings.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |