From: hno <> Date: Sat, 6 Apr 2002 22:24:41 +0000 (+0000) Subject: Bugfix: Uninitialized variable (trapped by GCC) X-Git-Tag: SQUID_3_0_PRE1~1119 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60eed7c254c506eb64f82e793cdf199216e565f6;p=thirdparty%2Fsquid.git Bugfix: Uninitialized variable (trapped by GCC) --- diff --git a/src/mem.cc b/src/mem.cc index 9dd694a011..0d91386b2b 100644 --- a/src/mem.cc +++ b/src/mem.cc @@ -1,6 +1,6 @@ /* - * $Id: mem.cc,v 1.63 2002/04/06 08:49:27 adrian Exp $ + * $Id: mem.cc,v 1.64 2002/04/06 15:24:41 hno Exp $ * * DEBUG: section 13 High Level Memory Pool Management * AUTHOR: Harvest Derived @@ -517,7 +517,7 @@ memFreeBufFunc(size_t size) static void memPoolReport(const MemPoolStats * mp_st, const MemPoolMeter * AllMeter, StoreEntry * e) { - int excess; + int excess = 0; int needed = 0; MemPoolMeter *pm = mp_st->meter;