From: wessels <> Date: Fri, 2 Dec 2005 02:06:46 +0000 (+0000) Subject: Bug fixed by Ralf Horstmann: X-Git-Tag: SQUID_3_0_PRE4~477 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff12ed158732cc772d813d319cfb5c1c52350539;p=thirdparty%2Fsquid.git Bug fixed by Ralf Horstmann: ICAPClass constructor should initialize accessList to NULL. --- diff --git a/src/ICAP/ICAPConfig.h b/src/ICAP/ICAPConfig.h index d1c8188fb6..5009d662f1 100644 --- a/src/ICAP/ICAPConfig.h +++ b/src/ICAP/ICAPConfig.h @@ -1,6 +1,6 @@ /* - * $Id: ICAPConfig.h,v 1.2 2005/11/21 23:46:27 wessels Exp $ + * $Id: ICAPConfig.h,v 1.3 2005/12/01 19:06:46 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -51,7 +51,7 @@ public: Vector services; - ICAPClass() : key(NULL) {}; + ICAPClass() : key(NULL), accessList(NULL) {}; int prepare(); };