commit | 82851bd3cbf8ad647971988e0303b2e0b0284511 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Mon Apr 04 13:43:58 2022 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Apr 08 15:38:29 2022 +0200 |
tree | d659328ecaabed9c38e2a40fa3ec144b17a9fe89 | |
parent | 9cc88c3075ca13c90268eabc83ae121f47848f40 [diff] |
BUG/MEDIUM: quic: Possible crash from quic_free_arngs() All quic_arng_node objects are allocated from "pool_head_quic_arng" memory pool. They must be deallocated calling pool_free().
diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 9dd280a..d3ab707 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c
@@ -3165,7 +3165,7 @@ ar = eb64_entry(&n->node, struct quic_arng_node, first); next = eb64_next(n); eb64_delete(n); - free(ar); + pool_free(pool_head_quic_arng, ar); n = next; } }