diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2008-02-26 20:14:04 -0800 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-27 07:23:28 +0100 |
commit | 6fb37ae6725acda88876d92061a4db39f53cbf0a (patch) | |
tree | 9315d3f0e23d90ac7f593982ed9bc1301f7ad751 | |
parent | cbaf484367d0b850eb88c06d633c69ddafeebfdd (diff) | |
download | samba-6fb37ae6725acda88876d92061a4db39f53cbf0a.tar.gz samba-6fb37ae6725acda88876d92061a4db39f53cbf0a.tar.bz2 samba-6fb37ae6725acda88876d92061a4db39f53cbf0a.zip |
Closed memory leak on error path.
(This used to be commit 376de8a0e4194e186b460911e3319b0f4448203e)
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 40d0ac5da9..c89c5531d7 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -1807,6 +1807,7 @@ static NTSTATUS rpc_finish_auth3_bind(struct rpc_pipe_client *cli, if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0,("rpc_finish_auth3_bind: NTLMSSP update using server blob failed.\n")); + data_blob_free(&server_response); return nt_status; } |