From 8e63006f4fcc067bc201302f984cc9c83b70cbb6 Mon Sep 17 00:00:00 2001 From: hno <> Date: Sun, 9 Jan 2005 05:38:34 +0000 Subject: [PATCH] Fix RemovalPolicySettings() to properly initialize it's members --- src/structs.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.47.2