s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf_init
authorMichael Adam <obnox@samba.org>
Wed, 21 Jan 2009 16:12:50 +0000 (17:12 +0100)
committerMichael Adam <obnox@samba.org>
Wed, 21 Jan 2009 17:40:56 +0000 (18:40 +0100)
Michael

source3/lib/smbconf/smbconf_init.c

index f9352e8962e79d7461e477283a1f5bd4fb998772..f535906aad9d183064c98727a6f6a1dfe682dc39 100644 (file)
@@ -90,6 +90,6 @@ WERROR smbconf_init(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx,
        }
 
 done:
-       TALLOC_FREE(tmp_ctx);
+       talloc_free(tmp_ctx);
        return werr;
 }