From 9d8f439209c54f5604da0a247023d3f722c86b1f Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 30 Nov 2012 07:07:48 -0700 Subject: [PATCH] Additional fix on rev.10479 for freeing const buffer --- tools/cachemgr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2