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.
This commit is contained in:
Amaury Denoyelle 2025-11-19 11:40:16 +01:00
parent e55bcf5746
commit 1a22caa6ed

View File

@ -694,7 +694,7 @@ static void quic_release_cc_conn(struct quic_conn_closed *cc_qc)
/* free the SSL sock context */ /* free the SSL sock context */
pool_free(pool_head_quic_conn_closed, cc_qc); 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. */ /* QUIC connection packet handler task used when in "closing connection" state. */