]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug fixed by Ralf Horstmann:
authorwessels <>
Fri, 2 Dec 2005 02:06:46 +0000 (02:06 +0000)
committerwessels <>
Fri, 2 Dec 2005 02:06:46 +0000 (02:06 +0000)
ICAPClass constructor should initialize accessList to NULL.

src/ICAP/ICAPConfig.h

index d1c8188fb6e6e9ae7ed8b118915025931436d3a7..5009d662f1296dd7490c6cc40bd7c1298ba8fdee 100644 (file)
@@ -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<ICAPServiceRep::Pointer> services;
 
-    ICAPClass() : key(NULL) {};
+    ICAPClass() : key(NULL), accessList(NULL) {};
 
     int prepare();
 };