From 9b5a2ee88c17f3a5dfe5231f7635b054112313b2 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Fri, 4 Sep 1998 00:39:06 +0000 Subject: [PATCH] memFree MD5 digests instead of xfree! --- src/store_key_md5.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store_key_md5.cc b/src/store_key_md5.cc index a8b99ef015..1a57f7147a 100644 --- a/src/store_key_md5.cc +++ b/src/store_key_md5.cc @@ -1,6 +1,6 @@ /* - * $Id: store_key_md5.cc,v 1.13 1998/08/30 05:21:42 wessels Exp $ + * $Id: store_key_md5.cc,v 1.14 1998/09/03 18:39:06 wessels Exp $ * * DEBUG: section 20 Storage Manager MD5 Cache Keys * AUTHOR: Duane Wessels @@ -145,7 +145,7 @@ storeKeyCopy(cache_key * dst, const cache_key *src) void storeKeyFree(const cache_key * key) { - xfree((void *) key); + memFree(MEM_MD5_DIGEST, (void *)key); } int -- 2.47.3