summaryrefslogtreecommitdiff
path: root/source3/rpc_client/cli_pipe.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-08-04 02:51:30 +0000
committerTim Potter <tpot@samba.org>2003-08-04 02:51:30 +0000
commitcdf562f5b231a0a398204356dded8c5ab773036d (patch)
treed5622976dd521a165de82cb22f07041c2adfbfdb /source3/rpc_client/cli_pipe.c
parent5216cb0f369fd45949c913b38b2ef1d5125af39d (diff)
downloadsamba-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/rpc_client/cli_pipe.c')
-rw-r--r--source3/rpc_client/cli_pipe.c1
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;
}