]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
memFree MD5 digests instead of xfree!
authorwessels <>
Fri, 4 Sep 1998 00:39:06 +0000 (00:39 +0000)
committerwessels <>
Fri, 4 Sep 1998 00:39:06 +0000 (00:39 +0000)
src/store_key_md5.cc

index a8b99ef0156eadfb272039b5ae3649cc1bd2c749..1a57f7147a2e18de054d5372ee9a72253418a8ad 100644 (file)
@@ -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