From 983a112e363bec30b88355763313f1ebcd0c2151 Mon Sep 17 00:00:00 2001 From: Damian Meden Date: Wed, 19 Apr 2023 17:19:32 +0100 Subject: [PATCH] quic: Fix session cleanup assert. --- proxy/http3/Http3Session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/http3/Http3Session.cc b/proxy/http3/Http3Session.cc index 8a422fff599..ba629201e44 100644 --- a/proxy/http3/Http3Session.cc +++ b/proxy/http3/Http3Session.cc @@ -39,7 +39,7 @@ HQSession::HQSession(NetVConnection *vc) : ProxySession(vc) HQSession::~HQSession() { // Transactions should be deleted first before HQSesson gets deleted. - ink_assert(this->_transaction_list.head); + ink_assert(this->_transaction_list.head == nullptr); } void