mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-11-24 12:20:59 +01:00
BUG/MINOR: quic: Wrong RX packet reference counter usage
No need to call free_quic_rx_packet() after calling quic_rx_packet_eb64_delete() as this latter already calls quic_rx_packet_refdec() also called by free_quic_rx_packet().
This commit is contained in:
parent
c4b93ea57d
commit
6fe21b0dec
@ -2492,7 +2492,6 @@ int qc_treat_rx_pkts(struct quic_enc_level *el, struct quic_conn_ctx *ctx)
|
||||
QUIC_EV_CONN_ELRXPKTS, ctx->conn);
|
||||
node = eb64_next(node);
|
||||
quic_rx_packet_eb64_delete(&pkt->pn_node);
|
||||
free_quic_rx_packet(pkt);
|
||||
goto err;
|
||||
}
|
||||
|
||||
@ -2500,7 +2499,6 @@ int qc_treat_rx_pkts(struct quic_enc_level *el, struct quic_conn_ctx *ctx)
|
||||
}
|
||||
node = eb64_next(node);
|
||||
quic_rx_packet_eb64_delete(&pkt->pn_node);
|
||||
free_quic_rx_packet(pkt);
|
||||
}
|
||||
|
||||
if (!qc_treat_rx_crypto_frms(el, ctx))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user