From: Martin Pool Date: Wed, 9 Jan 2002 05:09:44 +0000 (+0000) Subject: Add harmless parentheses so that dmalloc doesn't get confused by a X-Git-Tag: samba-4.0.0alpha6~801^2~16113 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=0e0c24b40d38515ca7110b357f74feb21b2459f5 Add harmless parentheses so that dmalloc doesn't get confused by a variable called 'free'. (This used to be commit a823e3f8b2961c3e24205911354a55ffa588233b) --- diff --git a/source3/lib/util.c b/source3/lib/util.c index 3409124fe25..6caa6050663 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); }