diff options
author | Martin Pool <mbp@samba.org> | 2002-01-09 05:09:44 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-09 05:09:44 +0000 |
commit | 0e0c24b40d38515ca7110b357f74feb21b2459f5 (patch) | |
tree | 272c732b21ec49a8e90cbc29b2541c284fba0e95 | |
parent | d42fc03e9ba137a5af4982ae6c7f2d0392cee9dc (diff) | |
download | samba-0e0c24b40d38515ca7110b357f74feb21b2459f5.tar.gz samba-0e0c24b40d38515ca7110b357f74feb21b2459f5.tar.bz2 samba-0e0c24b40d38515ca7110b357f74feb21b2459f5.zip |
Add harmless parentheses so that dmalloc doesn't get confused by a
variable called 'free'.
(This used to be commit a823e3f8b2961c3e24205911354a55ffa588233b)
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |