From 6fb37ae6725acda88876d92061a4db39f53cbf0a Mon Sep 17 00:00:00 2001 From: Steven Danneman Date: Tue, 26 Feb 2008 20:14:04 -0800 Subject: Closed memory leak on error path. (This used to be commit 376de8a0e4194e186b460911e3319b0f4448203e) --- source3/rpc_client/cli_pipe.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/rpc_client/cli_pipe.c') 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; } -- cgit