From 7dad52bdbd6cc5020edcd863a4ce09a5ccf5c613 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Tue, 29 Aug 2023 14:34:03 +0200 Subject: [PATCH] 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. --- src/quic_frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_frame.c b/src/quic_frame.c index f918cbd..b48e878 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; -- 1.7.10.4