diff options
Diffstat (limited to 'source3/lib/util.c')
-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); } |