Repository: trafficserver Updated Branches: refs/heads/master 0d6042581 -> b8a647dc3
TS-2344: fixed problem with freeing the string Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/b8a647dc Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/b8a647dc Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/b8a647dc Branch: refs/heads/master Commit: b8a647dc30d3a66ac270cd306876a31d7a86b372 Parents: 0d60425 Author: Bryan Call <[email protected]> Authored: Fri May 23 15:48:11 2014 -0700 Committer: Bryan Call <[email protected]> Committed: Fri May 23 15:48:11 2014 -0700 ---------------------------------------------------------------------- proxy/http/HttpTransact.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b8a647dc/proxy/http/HttpTransact.cc ---------------------------------------------------------------------- diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc index 6a10422..ee59a8a 100644 --- a/proxy/http/HttpTransact.cc +++ b/proxy/http/HttpTransact.cc @@ -1274,7 +1274,7 @@ HttpTransact::handleIfRedirect(State *s) "The document you requested is now", s->remap_redirect, s->remap_redirect, "Please update your documents and bookmarks accordingly"); } - ats_free(s->remap_redirect); + s->arena.str_free(s->remap_redirect); s->remap_redirect = NULL; return true; }
