You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2015/08/19 21:22:48 UTC

trafficserver git commit: TS-3854: Memory leak with the headers in HTTP/2

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 <bc...@apache.org>
Authored: Wed Aug 19 12:21:03 2015 -0700
Committer: Bryan Call <bc...@apache.org>
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;
   }