From cdf562f5b231a0a398204356dded8c5ab773036d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 4 Aug 2003 02:51:30 +0000 Subject: Memory leak fix for create_rpc_bind_req() (This used to be commit 4d26feabd75d5b298276b0c5880b9765507bb6ae) --- source3/rpc_client/cli_pipe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index ebe54c2c06..5467c022f2 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -751,6 +751,7 @@ static NTSTATUS create_rpc_bind_req(struct cli_state *cli, prs_struct *rpc_out, return NT_STATUS_NO_MEMORY; } } + prs_mem_free(&auth_info); return NT_STATUS_OK; } -- cgit