summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-01-13 23:15:14 +0000
committerJeremy Allison <jra@samba.org>2003-01-13 23:15:14 +0000
commitf504cc4e10006f324bef9f3149d4099fba6ea732 (patch)
treee91c0ff3c19158126bf5678a65436ebce7a50b64 /source3
parent2467a2f0ce1a99f933773f295c8146c5cd3e66c0 (diff)
downloadsamba-f504cc4e10006f324bef9f3149d4099fba6ea732.tar.gz
samba-f504cc4e10006f324bef9f3149d4099fba6ea732.tar.bz2
samba-f504cc4e10006f324bef9f3149d4099fba6ea732.zip
Don't touch data after a free.
Jeremy. (This used to be commit 3aea32c8e6d204e41776b4bce79234d2159867b3)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/data_blob.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/lib/data_blob.c b/source3/lib/data_blob.c
index d690cd05a0..250c3ade88 100644
--- a/source3/lib/data_blob.c
+++ b/source3/lib/data_blob.c
@@ -84,7 +84,6 @@ void data_blob_free(DATA_BLOB *d)
if (d->free) {
(d->free)(d);
}
- ZERO_STRUCTP(d);
}
}