summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_pipe.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-06-20 16:22:49 +0200
committerVolker Lendecke <vl@samba.org>2008-06-21 10:34:34 +0200
commitdf905a5d77037eaffe5f52edd26409152b740068 (patch)
tree38a6aecee872febee70cb2c804a89873b3fc7bf7 /source3/rpc_server/srv_pipe.c
parentc203de0e3a6f5b2254bc5c308cf87e6a7b67cad8 (diff)
downloadsamba-df905a5d77037eaffe5f52edd26409152b740068.tar.gz
samba-df905a5d77037eaffe5f52edd26409152b740068.tar.bz2
samba-df905a5d77037eaffe5f52edd26409152b740068.zip
Make pipes_struct its own talloc ctx
(This used to be commit 829b1ad4697f2f1ea008377d591456722dccd025)
Diffstat (limited to 'source3/rpc_server/srv_pipe.c')
-rw-r--r--source3/rpc_server/srv_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c
index dcc4cd448f..0987a420d5 100644
--- a/source3/rpc_server/srv_pipe.c
+++ b/source3/rpc_server/srv_pipe.c
@@ -1343,7 +1343,7 @@ static bool pipe_schannel_auth_bind(pipes_struct *p, prs_struct *rpc_in_p,
return False;
}
- p->auth.a_u.schannel_auth = TALLOC_P(p->pipe_state_mem_ctx, struct schannel_auth_struct);
+ p->auth.a_u.schannel_auth = talloc(p, struct schannel_auth_struct);
if (!p->auth.a_u.schannel_auth) {
TALLOC_FREE(pdcinfo);
return False;