From: Christos Tsantilas Date: Thu, 16 May 2013 07:06:50 +0000 (+0300) Subject: "LruMap bug fix and other polishing touches" patch: fix compile error X-Git-Tag: SQUID_3_4_0_1~135 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5ec7440cabae79d502b1d954adfbd8c17e8f996;p=thirdparty%2Fsquid.git "LruMap bug fix and other polishing touches" patch: fix compile error --- diff --git a/src/base/LruMap.h b/src/base/LruMap.h index 506b0e0bf2..39eb44c82d 100644 --- a/src/base/LruMap.h +++ b/src/base/LruMap.h @@ -165,7 +165,7 @@ bool LruMap::del(LruMap::MapIterator const &i) { if (i != storage.end()) { - LruMap::Entry *e = *i->second; + Entry *e = *i->second; index.erase(i->second); storage.erase(i); delete e;