From: Amos Jeffries Date: Fri, 30 Nov 2012 14:07:48 +0000 (-0700) Subject: Additional fix on rev.10479 for freeing const buffer X-Git-Tag: SQUID_3_1_22~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d8f439209c54f5604da0a247023d3f722c86b1f;p=thirdparty%2Fsquid.git Additional fix on rev.10479 for freeing const buffer --- diff --git a/tools/cachemgr.cc b/tools/cachemgr.cc index 7f08f4fcef..7895fa5e68 100644 --- a/tools/cachemgr.cc +++ b/tools/cachemgr.cc @@ -1179,7 +1179,7 @@ make_auth_header(const cachemgr_request * req) snprintf(&buf[stringLength], sizeof(buf) - stringLength, "Proxy-Authorization: Basic %s\r\n", str64); - xfree(str64); + xxfree(str64); return buf; }