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/25 22:31:44 UTC

[2/2] trafficserver git commit: TS-3851: Memory leak on the write_buffer for HTTP/2

TS-3851: Memory leak on the write_buffer for HTTP/2

(cherry picked from commit 2440f464db61084e0a9895693964887e30e92210)


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/8e49ab9e
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/8e49ab9e
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/8e49ab9e

Branch: refs/heads/6.0.x
Commit: 8e49ab9e0df0ac954c8f34b5bcff8cf4348c0de7
Parents: 4f68574
Author: Bryan Call <bc...@apache.org>
Authored: Tue Aug 18 14:57:29 2015 -0700
Committer: Bryan Call <bc...@apache.org>
Committed: Tue Aug 25 13:31:08 2015 -0700

----------------------------------------------------------------------
 proxy/http2/Http2ClientSession.cc | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8e49ab9e/proxy/http2/Http2ClientSession.cc
----------------------------------------------------------------------
diff --git a/proxy/http2/Http2ClientSession.cc b/proxy/http2/Http2ClientSession.cc
index 01590cc..2cb83d7 100644
--- a/proxy/http2/Http2ClientSession.cc
+++ b/proxy/http2/Http2ClientSession.cc
@@ -77,6 +77,7 @@ Http2ClientSession::destroy()
   super::destroy();
 
   free_MIOBuffer(this->read_buffer);
+  free_MIOBuffer(this->write_buffer);
   http2ClientSessionAllocator.free(this);
 }