diff options
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 20422a00c7..d3f07dd0a8 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1913,9 +1913,9 @@ DATA_BLOB data_blob(void *p, size_t length) /******************************************************************* free a data blob *******************************************************************/ -void data_blob_free(DATA_BLOB d) +void data_blob_free(DATA_BLOB *d) { - SAFE_FREE(d.data); + SAFE_FREE(d->data); } |