From: hno <> Date: Sun, 9 Jan 2005 05:38:34 +0000 (+0000) Subject: Fix RemovalPolicySettings() to properly initialize it's members X-Git-Tag: SQUID_3_0_PRE4~909 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8e63006f4fcc067bc201302f984cc9c83b70cbb6;p=thirdparty%2Fsquid.git Fix RemovalPolicySettings() to properly initialize it's members --- diff --git a/src/structs.h b/src/structs.h index 634ca8850d..0d82e6d7bc 100644 --- a/src/structs.h +++ b/src/structs.h @@ -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;