Repository: trafficserver Updated Branches: refs/heads/master 9ee6274f3 -> 68d1e575c
TS-3854: Memory leak with the headers in HTTP/2 Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/68d1e575 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/68d1e575 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/68d1e575 Branch: refs/heads/master Commit: 68d1e575c3cda3a9aa9ab4f184cb6756310903e7 Parents: 9ee6274 Author: Bryan Call <[email protected]> Authored: Wed Aug 19 12:21:03 2015 -0700 Committer: Bryan Call <[email protected]> Committed: Wed Aug 19 12:21:03 2015 -0700 ---------------------------------------------------------------------- proxy/http2/HPACK.h | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/68d1e575/proxy/http2/HPACK.h ---------------------------------------------------------------------- diff --git a/proxy/http2/HPACK.h b/proxy/http2/HPACK.h index 3550495..e1bf430 100644 --- a/proxy/http2/HPACK.h +++ b/proxy/http2/HPACK.h @@ -110,6 +110,7 @@ public: { _headers.clear(); _mhdr->fields_clear(); + _mhdr->destroy(); delete _mhdr; }
