From 0e0c24b40d38515ca7110b357f74feb21b2459f5 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 9 Jan 2002 05:09:44 +0000 Subject: Add harmless parentheses so that dmalloc doesn't get confused by a variable called 'free'. (This used to be commit a823e3f8b2961c3e24205911354a55ffa588233b) --- source3/lib/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/util.c b/source3/lib/util.c index 3409124fe2..6caa605066 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -2147,7 +2147,7 @@ void data_blob_free(DATA_BLOB *d) { if (d) { if (d->free) { - d->free(d); + (d->free)(d); } ZERO_STRUCTP(d); } -- cgit