From 1a22caa6edee1a6f12af7cb291d2598165f46522 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Wed, 19 Nov 2025 11:40:16 +0100 Subject: [PATCH] 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. --- src/quic_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.47.3