From: robertc <> Date: Sat, 6 Sep 2003 18:59:04 +0000 (+0000) Subject: Summary: Don't double free refcounted object on store swapout failures. X-Git-Tag: SQUID_3_0_PRE4~1218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7151e028e135d0c7e5dd89dc78dc14ba79c3a448;p=thirdparty%2Fsquid.git Summary: Don't double free refcounted object on store swapout failures. Keywords: Don't double free refcounted object on store swapout failures. --- diff --git a/src/store_swapout.cc b/src/store_swapout.cc index 0b6626783d..0b19b8c889 100644 --- a/src/store_swapout.cc +++ b/src/store_swapout.cc @@ -1,6 +1,6 @@ /* - * $Id: store_swapout.cc,v 1.96 2003/07/11 04:02:01 robertc Exp $ + * $Id: store_swapout.cc,v 1.97 2003/09/06 12:59:04 robertc Exp $ * * DEBUG: section 20 Storage Manager Swapout Functions * AUTHOR: Duane Wessels @@ -68,7 +68,6 @@ storeSwapOutStart(StoreEntry * e) if (NULL == sio.getRaw()) { e->swap_status = SWAPOUT_NONE; - cbdataFree(c); storeLog(STORE_LOG_SWAPOUTFAIL, e); return; }