From: wessels <> Date: Fri, 4 Sep 1998 00:39:06 +0000 (+0000) Subject: memFree MD5 digests instead of xfree! X-Git-Tag: SQUID_3_0_PRE1~2765 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b5a2ee88c17f3a5dfe5231f7635b054112313b2;p=thirdparty%2Fsquid.git memFree MD5 digests instead of xfree! --- 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