mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-20 04:58:49 +02:00
BUG/MINOR: quic: Wrong memory free in quic_update_ack_ranges_list()
Wrong call to free() in place of pool_free() for an object allocated from a pool memory.
This commit is contained in:
committed by
Amaury Denoyelle
parent
1a5e88c86a
commit
baea284c3c
@@ -2369,7 +2369,7 @@ int quic_update_ack_ranges_list(struct quic_arngs *arngs,
|
||||
if (next_node->last > new_node->last)
|
||||
new_node->last = next_node->last;
|
||||
eb64_delete(next);
|
||||
free(next_node);
|
||||
pool_free(pool_head_quic_arng, next_node);
|
||||
/* Decrement the size of these ranges. */
|
||||
arngs->sz--;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user