]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
forgot to call cbdataFree() on the peer!!
authorwessels <>
Wed, 16 Dec 1998 01:19:26 +0000 (01:19 +0000)
committerwessels <>
Wed, 16 Dec 1998 01:19:26 +0000 (01:19 +0000)
src/cache_cf.cc

index 34a2186125576854aab5a388d5a261975c5a1f5a..90a656adf7b19b63c8635a27ab60d4e24a7eb4b9 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: cache_cf.cc,v 1.314 1998/12/14 22:34:30 wessels Exp $
+ * $Id: cache_cf.cc,v 1.315 1998/12/15 18:19:26 wessels Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -786,6 +786,7 @@ free_peer(peer ** P)
     while ((p = *P) != NULL) {
        *P = p->next;
        cbdataUnlock(p);
+       cbdataFree(p);
     }
     Config.npeers = 0;
 }