From: Amaury Denoyelle Date: Wed, 19 Nov 2025 10:40:16 +0000 (+0100) Subject: MINOR: quic: fix trace on quic_conn_closed release X-Git-Tag: v3.3-dev14~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a22caa6edee1a6f12af7cb291d2598165f46522;p=thirdparty%2Fhaproxy.git MINOR: quic: fix trace on quic_conn_closed release Adjust leaving trace of quic_release_cc_conn() so that the end of the function is properly reported. --- diff --git a/src/quic_conn.c b/src/quic_conn.c index 7495cf823..12532594a 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -694,7 +694,7 @@ static void quic_release_cc_conn(struct quic_conn_closed *cc_qc) /* free the SSL sock context */ pool_free(pool_head_quic_conn_closed, cc_qc); - TRACE_ENTER(QUIC_EV_CONN_IO_CB); + TRACE_LEAVE(QUIC_EV_CONN_IO_CB); } /* QUIC connection packet handler task used when in "closing connection" state. */