From 6bea5bea4ccd4eb45b9cd4dd1e16538b14e2180e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 26 Sep 2004 01:43:05 +0000 Subject: r2643: convert more of the auth subsyystem to the new talloc methods. This also fixes a memory leak found with --leak-check. (This used to be commit f19201ea274f0a542314c61c4af676197bf154ad) --- source4/librpc/rpc/dcerpc_schannel.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'source4/librpc/rpc') diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c index 057e20f497..7bb871811a 100644 --- a/source4/librpc/rpc/dcerpc_schannel.c +++ b/source4/librpc/rpc/dcerpc_schannel.c @@ -212,25 +212,18 @@ NTSTATUS dcerpc_schannel_session_info(struct gensec_security *gensec_security, struct auth_session_info **session_info) { struct dcerpc_schannel_state *dce_schan_state = gensec_security->private_data; - TALLOC_CTX *mem_ctx; - mem_ctx = talloc_init("dcerpc_schannel_start"); - if (!mem_ctx) { - return NT_STATUS_NO_MEMORY; - } - (*session_info) = talloc_p(mem_ctx, struct auth_session_info); + (*session_info) = talloc_p(gensec_security, struct auth_session_info); if (*session_info == NULL) { - talloc_destroy(mem_ctx); return NT_STATUS_NO_MEMORY; } ZERO_STRUCTP(*session_info); - (*session_info)->mem_ctx = mem_ctx; (*session_info)->refcount = 1; - (*session_info)->workstation = talloc_strdup(mem_ctx, dce_schan_state->account_name); + (*session_info)->workstation = talloc_strdup(*session_info, dce_schan_state->account_name); if ((*session_info)->workstation == NULL) { - talloc_destroy(mem_ctx); + talloc_free(*session_info); return NT_STATUS_NO_MEMORY; } return NT_STATUS_OK; -- cgit