From b5f88200e35c291c314cdaaa92a74f1264b225e8 Mon Sep 17 00:00:00 2001 From: Masakazu Kitajo Date: Sat, 13 Mar 2021 22:25:19 +0900 Subject: [PATCH] Fix double destuct on Http2Stream termination The bug was introduced by #7584. --- proxy/http2/Http2Stream.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/proxy/http2/Http2Stream.cc b/proxy/http2/Http2Stream.cc index 53146bc2f86..420a59e4be3 100644 --- a/proxy/http2/Http2Stream.cc +++ b/proxy/http2/Http2Stream.cc @@ -482,7 +482,6 @@ Http2Stream::terminate_if_possible() Http2ClientSession *h2_proxy_ssn = static_cast(this->_proxy_ssn); SCOPED_MUTEX_LOCK(lock, h2_proxy_ssn->connection_state.mutex, this_ethread()); - this->~Http2Stream(); THREAD_FREE(this, http2StreamAllocator, this_ethread()); } }