diff options
author | Tim Potter <tpot@samba.org> | 2003-08-04 02:51:30 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-08-04 02:51:30 +0000 |
commit | cdf562f5b231a0a398204356dded8c5ab773036d (patch) | |
tree | d5622976dd521a165de82cb22f07041c2adfbfdb /source3 | |
parent | 5216cb0f369fd45949c913b38b2ef1d5125af39d (diff) | |
download | samba-cdf562f5b231a0a398204356dded8c5ab773036d.tar.gz samba-cdf562f5b231a0a398204356dded8c5ab773036d.tar.bz2 samba-cdf562f5b231a0a398204356dded8c5ab773036d.zip |
Memory leak fix for create_rpc_bind_req()
(This used to be commit 4d26feabd75d5b298276b0c5880b9765507bb6ae)
Diffstat (limited to 'source3')
-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 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; } |