]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix RemovalPolicySettings() to properly initialize it's members
authorhno <>
Sun, 9 Jan 2005 05:38:34 +0000 (05:38 +0000)
committerhno <>
Sun, 9 Jan 2005 05:38:34 +0000 (05:38 +0000)
src/structs.h

index 634ca8850d3b581b7e56a23413b3e7b84842f6ed..0d82e6d7bc9c512e44f6b5c221cdbad603db6661 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: structs.h,v 1.504 2005/01/03 16:08:26 robertc Exp $
+ * $Id: structs.h,v 1.505 2005/01/08 22:38:34 hno Exp $
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
@@ -213,6 +213,8 @@ class RemovalPolicySettings
 public:
     char *type;
     wordlist *args;
+
+    RemovalPolicySettings() type(NULL), args(NULL) {};
 };
 
 class external_acl;