From: rousskov <> Date: Fri, 25 Sep 1998 02:35:11 +0000 (+0000) Subject: - minor fix X-Git-Tag: SQUID_3_0_PRE1~2636 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4055bb7e20ae76f9a60f207e0d129d703d2437a4;p=thirdparty%2Fsquid.git - minor fix --- diff --git a/src/cachemgr.cc b/src/cachemgr.cc index 8ad63b3253..60360d59f1 100644 --- a/src/cachemgr.cc +++ b/src/cachemgr.cc @@ -1,6 +1,6 @@ /* - * $Id: cachemgr.cc,v 1.82 1998/08/14 19:25:14 wessels Exp $ + * $Id: cachemgr.cc,v 1.83 1998/09/24 20:35:11 rousskov Exp $ * * DEBUG: section 0 CGI Cache Manager * AUTHOR: Duane Wessels @@ -162,7 +162,7 @@ static struct in_addr no_addr; /* * Function prototypes */ -#define safe_free(str) if (str) { xfree(str); (str) = NULL; } +#define safe_free(str) { if (str) { xfree(str); (str) = NULL; } } static const char *safe_str(const char *str); static char *xstrtok(char **str, char del); static void print_trailer(void);