diff options
author | Tim Potter <tpot@samba.org> | 2004-09-08 00:00:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:34 -0500 |
commit | 8293df91bcec574fb4a2b290cc11dd83353264ae (patch) | |
tree | 61f9c0a70bec06a0e39ac80e5edab51195da36b6 /source4/rpc_server/netlogon/dcerpc_netlogon.c | |
parent | 915f2e539d4b2f5f4eb87a1f64f50f3d9a17743a (diff) | |
download | samba-8293df91bcec574fb4a2b290cc11dd83353264ae.tar.gz samba-8293df91bcec574fb4a2b290cc11dd83353264ae.tar.bz2 samba-8293df91bcec574fb4a2b290cc11dd83353264ae.zip |
r2247: talloc_destroy -> talloc_free
(This used to be commit 6c1a72c5d667245b1eec94f58e68acd22dd720ce)
Diffstat (limited to 'source4/rpc_server/netlogon/dcerpc_netlogon.c')
-rw-r--r-- | source4/rpc_server/netlogon/dcerpc_netlogon.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/rpc_server/netlogon/dcerpc_netlogon.c b/source4/rpc_server/netlogon/dcerpc_netlogon.c index de41838da5..b6182d31c6 100644 --- a/source4/rpc_server/netlogon/dcerpc_netlogon.c +++ b/source4/rpc_server/netlogon/dcerpc_netlogon.c @@ -52,7 +52,7 @@ static NTSTATUS netlogon_schannel_setup(struct dcesrv_call_state *dce_call) } state = talloc_p(mem_ctx, struct server_pipe_state); if (state == NULL) { - talloc_destroy(mem_ctx); + talloc_free(mem_ctx); return NT_STATUS_NO_MEMORY; } ZERO_STRUCTP(state); @@ -60,7 +60,7 @@ static NTSTATUS netlogon_schannel_setup(struct dcesrv_call_state *dce_call) state->authenticated = True; if (dce_call->conn->auth_state.session_info == NULL) { - talloc_destroy(mem_ctx); + talloc_free(mem_ctx); smb_panic("No session info provided by schannel level setup!"); return NT_STATUS_NO_USER_SESSION_KEY; } @@ -71,7 +71,7 @@ static NTSTATUS netlogon_schannel_setup(struct dcesrv_call_state *dce_call) if (!NT_STATUS_IS_OK(status)) { DEBUG(3, ("getting schannel credentials failed with %s\n", nt_errstr(status))); - talloc_destroy(mem_ctx); + talloc_free(mem_ctx); return status; } @@ -110,7 +110,7 @@ static void netlogon_unbind(struct dcesrv_connection *conn, const struct dcesrv_ struct server_pipe_state *pipe_state = conn->private; if (pipe_state) { - talloc_destroy(pipe_state->mem_ctx); + talloc_free(pipe_state->mem_ctx); } conn->private = NULL; @@ -130,7 +130,7 @@ static NTSTATUS netr_ServerReqChallenge(struct dcesrv_call_state *dce_call, TALL /* destroyed on pipe shutdown */ if (pipe_state) { - talloc_destroy(pipe_state->mem_ctx); + talloc_free(pipe_state->mem_ctx); dce_call->conn->private = NULL; } @@ -143,7 +143,7 @@ static NTSTATUS netr_ServerReqChallenge(struct dcesrv_call_state *dce_call, TALL pipe_state = talloc_p(pipe_mem_ctx, struct server_pipe_state); if (!pipe_state) { - talloc_destroy(pipe_mem_ctx); + talloc_free(pipe_mem_ctx); return NT_STATUS_NO_MEMORY; } |