From: hno <> Date: Sun, 9 Jan 2005 05:48:25 +0000 (+0000) Subject: Fix RemovalPolicySettings() to properly initialize it's members X-Git-Tag: SQUID_3_0_PRE4~908 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dadf007019b92dea7acb86be9f73d02e628a3f50;p=thirdparty%2Fsquid.git Fix RemovalPolicySettings() to properly initialize it's members --- diff --git a/src/structs.h b/src/structs.h index 0d82e6d7bc..0c3a9b3819 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1,6 +1,6 @@ /* - * $Id: structs.h,v 1.505 2005/01/08 22:38:34 hno Exp $ + * $Id: structs.h,v 1.506 2005/01/08 22:48:25 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -214,7 +214,7 @@ public: char *type; wordlist *args; - RemovalPolicySettings() type(NULL), args(NULL) {}; + RemovalPolicySettings() : type(NULL), args(NULL) {}; }; class external_acl;