authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-25 16:49:52 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-25 16:49:52 -07:00
logd7fb0ca071f94b9e04f9f4ca0fa8ce36bd635d46
tree1e5f41a4c793213da1d144db28a2740bcc9a0881
parent99608311a0e818efc885d89d2f62400b058d17d9
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

0..9 was valid in receiveHead but not HeadersMap.append


1 files changed, 1 insertions(+), 0 deletions(-)

http.zig+1
......@@ -317,6 +317,7 @@ pub const HeadersMap = struct {
317317 fn findIndex(map: *const HeadersMap, n: []const u8) ?usize {
318318 for (n) |c| switch (c) {
319319 'a'...'z', '-' => {},
320 '0'...'9' => {},
320321 else => unreachable,
321322 };
322323 for (0..map.count()) |i| {