summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-11-30 04:45:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:52 -0500
commit36a5e353538cc6f0fe53670f9773b9acc51d4816 (patch)
treeb0f5d38c51504bf57f7c580469b2ae5ed42a96b9 /source4
parent516d0a97c9ecbbaa63b69c5c2c6a59a08f57a171 (diff)
downloadsamba-36a5e353538cc6f0fe53670f9773b9acc51d4816.tar.gz
samba-36a5e353538cc6f0fe53670f9773b9acc51d4816.tar.bz2
samba-36a5e353538cc6f0fe53670f9773b9acc51d4816.zip
r11970: fixed a valgrind error. The auth info from the alter_context reply was
being freed before being given to gensec_update() (This used to be commit cf2cb4279e2b31989eee2fec848982b10fcc2136)
Diffstat (limited to 'source4')
-rw-r--r--source4/librpc/rpc/dcerpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c
index 220b061f3c..aabc71a258 100644
--- a/source4/librpc/rpc/dcerpc.c
+++ b/source4/librpc/rpc/dcerpc.c
@@ -1557,7 +1557,7 @@ static void dcerpc_alter_recv_data(struct dcerpc_connection *conn, struct ncacn_
if (pipe->conn->security_state.auth_info &&
pkt->u.alter_resp.auth_info.length) {
c->status = ndr_pull_struct_blob(
- &pkt->u.alter_resp.auth_info, c,
+ &pkt->u.alter_resp.auth_info, pipe,
pipe->conn->security_state.auth_info,
(ndr_pull_flags_fn_t)ndr_pull_dcerpc_auth);
if (!composite_is_ok(c)) return;