From 3b8dbfcab4643fbfd3f276d3e9302b406e07f7fc Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Wed, 2 Dec 2020 10:55:49 +0300 Subject: [PATCH] QUIC: fixed send contexts cleanup. The ngx_quic_get_send_ctx() macro takes 'level' argument, not send context index. --- src/event/ngx_event_quic.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 0f59f73ea..e1ab107b1 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -1779,8 +1779,7 @@ ngx_quic_close_quic(ngx_connection_t *c, ngx_int_t rc) /* drop packets from retransmit queues, no ack is expected */ for (i = 0; i < NGX_QUIC_SEND_CTX_LAST; i++) { - ctx = ngx_quic_get_send_ctx(qc, i); - ngx_quic_free_frames(c, &ctx->sent); + ngx_quic_free_frames(c, &qc->send_ctx[i].sent); } if (rc == NGX_DONE) {