commit | fccffe08b39a877e974b5150f325b0f8ade4d61a | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Thu Sep 30 14:47:32 2021 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Oct 08 15:28:35 2021 +0200 |
tree | 250ae96ec46857329af11b004ad657176c5b08fb | |
parent | 485da0b0535cc575ed8d4f3bf407e9101dbb80aa [diff] |
MINOR: qpack: do not encode invalid http status code Ensure that the HTTP status code is valid before encoding with QPACK. An error is return if this is not the case.
diff --git a/src/qpack-enc.c b/src/qpack-enc.c index f53de7c..4d08836 100644 --- a/src/qpack-enc.c +++ b/src/qpack-enc.c
@@ -54,6 +54,9 @@ { int status_size, idx = 0; + if (status < 100 || status > 599) + return 1; + switch (status) { case 103: idx = 24; break; case 200: idx = 25; break;