QUIC: fixed send contexts cleanup.

The ngx_quic_get_send_ctx() macro takes 'level' argument, not send context
index.
This commit is contained in:
Vladimir Homutov 2020-12-02 10:55:49 +03:00
parent 5439bfc399
commit 8402a8068a
1 changed files with 1 additions and 2 deletions

View File

@ -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) {