From 9803069032aa7710932b6fd905631dc2c9d96067 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 21 Jan 2009 17:10:20 +0100 Subject: [PATCH] s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf.c Michael Signed-off-by: Michael Adam (cherry picked from commit 9685cbd3ab0304c0439f668d7b4963ab264729b2) --- source/lib/smbconf/smbconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/smbconf/smbconf.c b/source/lib/smbconf/smbconf.c index 396feab02d5..2d4f635f854 100644 --- a/source/lib/smbconf/smbconf.c +++ b/source/lib/smbconf/smbconf.c @@ -64,7 +64,7 @@ bool smbconf_is_writeable(struct smbconf_ctx *ctx) */ void smbconf_shutdown(struct smbconf_ctx *ctx) { - TALLOC_FREE(ctx); + talloc_free(ctx); } /** @@ -157,7 +157,7 @@ WERROR smbconf_get_config(struct smbconf_ctx *ctx, } done: - TALLOC_FREE(tmp_ctx); + talloc_free(tmp_ctx); return werr; } -- 2.11.4.GIT