Repository: trafficserver Updated Branches: refs/heads/master ef0f0e1ae -> 2440f464d
TS-3851: Memory leak on the write_buffer for HTTP/2 Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/2440f464 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/2440f464 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/2440f464 Branch: refs/heads/master Commit: 2440f464db61084e0a9895693964887e30e92210 Parents: ef0f0e1 Author: Bryan Call <[email protected]> Authored: Tue Aug 18 14:57:29 2015 -0700 Committer: Bryan Call <[email protected]> Committed: Tue Aug 18 14:57:29 2015 -0700 ---------------------------------------------------------------------- proxy/http2/Http2ClientSession.cc | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2440f464/proxy/http2/Http2ClientSession.cc ---------------------------------------------------------------------- diff --git a/proxy/http2/Http2ClientSession.cc b/proxy/http2/Http2ClientSession.cc index 7310662..7c9f90a 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); }
