1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

s3-dcerpc: fix uninitialized variable in cli_get_session_key().

Simo, please check.

Guenther
This commit is contained in:
Günther Deschner 2010-08-17 13:06:13 +02:00
parent ff17516732
commit 35052d71d3

View File

@ -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;