From: wessels <> Date: Tue, 16 Jul 1996 05:12:36 +0000 (+0000) Subject: separate meta_data.misc memory accounting X-Git-Tag: SQUID_3_0_PRE1~6061 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5162fc3cab75fa347c9150559acaead0a015e68c;p=thirdparty%2Fsquid.git separate meta_data.misc memory accounting --- diff --git a/src/errorpage.cc b/src/errorpage.cc index 674b884c7a..a06cba7c69 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -1,5 +1,5 @@ /* - * $Id: errorpage.cc,v 1.22 1996/07/09 03:41:23 wessels Exp $ + * $Id: errorpage.cc,v 1.23 1996/07/15 23:12:36 wessels Exp $ * * DEBUG: section 4 Error Generation * AUTHOR: Duane Wessels @@ -124,8 +124,9 @@ static char *tbuf = NULL; void errorInitialize() { tmp_error_buf = xmalloc(MAX_URL * 4); + meta_data.misc += MAX_URL * 4; tbuf = xmalloc(MAX_URL * 3); - meta_data.misc += MAX_URL * 7; + meta_data.misc += MAX_URL * 3; } void squid_error_entry(entry, type, msg)