]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Additional fix on rev.10479 for freeing const buffer
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 30 Nov 2012 14:07:48 +0000 (07:07 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 30 Nov 2012 14:07:48 +0000 (07:07 -0700)
tools/cachemgr.cc

index 7f08f4fcef136c857a3054f9cb57a616739e4e33..7895fa5e68055646e613591fd7854210ce121509 100644 (file)
@@ -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;
 }