]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
use storePurgeMem instead of storeRelease in storeGetMemSpace
authorwessels <>
Sun, 10 May 1998 20:35:51 +0000 (20:35 +0000)
committerwessels <>
Sun, 10 May 1998 20:35:51 +0000 (20:35 +0000)
src/store.cc

index 136b9f6681b7d8cabe1fd5ee12f4a801b12b4fb5..9e08668d790580ec0f75b84eb38d13619ff951a7 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.412 1998/05/09 16:48:41 wessels Exp $
+ * $Id: store.cc,v 1.413 1998/05/10 14:35:51 wessels Exp $
  *
  * DEBUG: section 20    Storage Manager
  * AUTHOR: Harvest Derived
@@ -625,7 +625,7 @@ storeGetMemSpace(int size)
        if (storeEntryLocked(e))
            continue;
        released++;
-       storeRelease(e);
+       storePurgeMem(e);
        if (memInUse(MEM_STMEM_BUF) + pages_needed < store_pages_low)
            break;
     }