Commit 1ed2bb63 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Correct assert

parent a3f94bde
......@@ -212,7 +212,7 @@ h2_b64url_settings(struct h2_sess *h2, struct req *req)
if (q == NULL)
return (-1);
i = q - s;
assert(i >= 0 && i <= 63);
assert(i >= 0 && i <= 64);
x <<= 6;
x |= i;
n += 6;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment