1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-23 20:23:50 +03:00

r13571: Replace all calls to talloc_free() with thye TALLOC_FREE()

macro which sets the freed pointer to NULL.
This commit is contained in:
Gerald Carter
2006-02-20 17:59:58 +00:00
committed by Gerald (Jerry) Carter
parent 69fb189a6b
commit b65be8874a
61 changed files with 268 additions and 267 deletions

View File

@@ -2469,7 +2469,7 @@ done:
cli_rpc_pipe_close(pipe_hnd);
/* Free all memory which was allocated for this request */
talloc_free(mem_ctx);
TALLOC_FREE(mem_ctx);
/* Tell 'em if it worked */
return W_ERROR_IS_OK(result) ? 0 : -1;