diff options
author | Günther Deschner <gd@samba.org> | 2010-08-17 13:06:13 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-08-17 13:06:13 +0200 |
commit | 35052d71d3de5e0eb3d2dfa06bf75f7547c543f8 (patch) | |
tree | 3a9a7c96a5070797b90ac0c0af52bf048df01294 /source3 | |
parent | ff175167321f0134f2f2e445aee1af04afe72f39 (diff) | |
download | samba-35052d71d3de5e0eb3d2dfa06bf75f7547c543f8.tar.gz samba-35052d71d3de5e0eb3d2dfa06bf75f7547c543f8.tar.bz2 samba-35052d71d3de5e0eb3d2dfa06bf75f7547c543f8.zip |
s3-dcerpc: fix uninitialized variable in cli_get_session_key().
Simo, please check.
Guenther
Diffstat (limited to 'source3')
-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 a8766dad94..daf30d7333 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -3395,7 +3395,7 @@ NTSTATUS cli_get_session_key(TALLOC_CTX *mem_ctx, { struct pipe_auth_data *a = cli->auth; DATA_BLOB sk = data_blob_null; - bool make_dup; + bool make_dup = false; if (!session_key || !cli) { return NT_STATUS_INVALID_PARAMETER; |