summaryrefslogtreecommitdiffstats
path: root/source/rpc_server/srv_pipe_hnd.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-02-20 17:59:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:10:14 -0500
commitb65be8874a2efe5a4b167448960a4fcf6bd995e2 (patch)
tree5a367e205b07d14766db02c41211346d5b6f3133 /source/rpc_server/srv_pipe_hnd.c
parent69fb189a6b9947069afebb15d6ee6f2f20d15171 (diff)
downloadsamba-b65be8874a2efe5a4b167448960a4fcf6bd995e2.tar.gz
samba-b65be8874a2efe5a4b167448960a4fcf6bd995e2.tar.xz
samba-b65be8874a2efe5a4b167448960a4fcf6bd995e2.zip
r13571: Replace all calls to talloc_free() with thye TALLOC_FREE()
macro which sets the freed pointer to NULL.
Diffstat (limited to 'source/rpc_server/srv_pipe_hnd.c')
-rw-r--r--source/rpc_server/srv_pipe_hnd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_server/srv_pipe_hnd.c b/source/rpc_server/srv_pipe_hnd.c
index 86a04e7ccbe..f7467f2cf06 100644
--- a/source/rpc_server/srv_pipe_hnd.c
+++ b/source/rpc_server/srv_pipe_hnd.c
@@ -1223,7 +1223,7 @@ static BOOL close_internal_rpc_pipe_hnd(void *np_conn)
/* Free the handles database. */
close_policy_by_pipe(p);
- talloc_free(p->pipe_user.nt_user_token);
+ TALLOC_FREE(p->pipe_user.nt_user_token);
data_blob_free(&p->session_key);
SAFE_FREE(p->pipe_user.ut.groups);