You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2018/08/29 23:31:33 UTC

[trafficserver] branch master updated: Clear up evnets and timers for a H2 stream before destroying its mutex

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new bb428f8  Clear up evnets and timers for a H2 stream before destroying its mutex
bb428f8 is described below

commit bb428f89c647e5d27e29e5faa86cc6eafe350324
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Wed Aug 15 12:27:48 2018 +0900

    Clear up evnets and timers for a H2 stream before destroying its mutex
---
 proxy/http2/Http2Stream.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/proxy/http2/Http2Stream.cc b/proxy/http2/Http2Stream.cc
index 672b553..1f3cd88 100644
--- a/proxy/http2/Http2Stream.cc
+++ b/proxy/http2/Http2Stream.cc
@@ -750,10 +750,10 @@ Http2Stream::destroy()
     ats_free(header_blocks);
   }
   chunked_handler.clear();
-  super::destroy();
   clear_timers();
   clear_io_events();
 
+  super::destroy();
   THREAD_FREE(this, http2StreamAllocator, this_ethread());
 }