From: Frédéric Lécaille Date: Tue, 29 Aug 2023 12:34:03 +0000 (+0200) Subject: MINOR: quic: Add a trace to quic_release_frm() X-Git-Tag: v2.9-dev5~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dad52bdbd6cc5020edcd863a4ce09a5ccf5c613;p=thirdparty%2Fhaproxy.git MINOR: quic: Add a trace to quic_release_frm() Display the address of the frame to be released as soon as entering into quic_release_frm() whose job is obviously to released the memory allocated for the frame passed as parameter. --- diff --git a/src/quic_frame.c b/src/quic_frame.c index f918cbd0d9..b48e878f64 100644 --- a/src/quic_frame.c +++ b/src/quic_frame.c @@ -1232,7 +1232,7 @@ void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm) uint64_t pn; struct quic_frame *origin, *f, *tmp; - TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc); + TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc, frm); /* Identify this frame: a frame copy or one of its copies */ origin = frm->origin ? frm->origin : frm;