From: wessels <> Date: Mon, 25 Nov 1996 09:36:46 +0000 (+0000) Subject: only free memory if purify debugging X-Git-Tag: SQUID_3_0_PRE1~5417 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=100fc7102ae2e76c498febc879dccf4520aac758;p=thirdparty%2Fsquid.git only free memory if purify debugging --- diff --git a/src/tools.cc b/src/tools.cc index fe82418f87..ac929375fc 100644 --- a/src/tools.cc +++ b/src/tools.cc @@ -1,6 +1,6 @@ /* - * $Id: tools.cc,v 1.87 1996/11/24 04:19:14 wessels Exp $ + * $Id: tools.cc,v 1.88 1996/11/25 02:36:46 wessels Exp $ * * DEBUG: section 21 Misc Functions * AUTHOR: Harvest Derived @@ -333,6 +333,7 @@ normal_shutdown(void) PrintRusage(NULL, debug_log); storeCloseLog(); statCloseLog(); +#if PURIFY configFreeMemory(); diskFreeMemory(); storeFreeMemory(); @@ -346,6 +347,7 @@ normal_shutdown(void) netdbFreeMemory(); ipcacheFreeMemory(); fqdncacheFreeMemory(); +#endif debug(21, 0, "Squid Cache (Version %s): Exiting normally.\n", version_string); fclose(debug_log);