commit | 0c80e694709f9411f5eaf96f5b8bddcd1efd2972 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Tue Feb 15 10:27:34 2022 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Tue Feb 15 17:33:21 2022 +0100 |
tree | d3f45e47f66eb799770b1e0d1d5ed40a98771022 | |
parent | 59509b518758b3739af53f04337b1d3f9135a10f [diff] |
MINOR: quic: Possible frame parsers array overrun This should fix CID 1469663 for GH #1546.
diff --git a/src/quic_frame.c b/src/quic_frame.c index 721b5e0..0adce4c 100644 --- a/src/quic_frame.c +++ b/src/quic_frame.c
@@ -1094,7 +1094,7 @@ } frm->type = *(*buf)++; - if (frm->type > QUIC_FT_MAX) { + if (frm->type >= QUIC_FT_MAX) { TRACE_DEVEL("wrong frame type", QUIC_EV_CONN_PRSFRM, qc, frm); return 0; }