Commit 1e09e63f authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Silence FlexeLint

parent 1e1493bd
...@@ -192,8 +192,8 @@ http_hdr_flags(const char *b, const char *e) ...@@ -192,8 +192,8 @@ http_hdr_flags(const char *b, const char *e)
assert(b + u == e); assert(b + u == e);
if (u < GPERF_MIN_WORD_LENGTH || u > GPERF_MAX_WORD_LENGTH) if (u < GPERF_MIN_WORD_LENGTH || u > GPERF_MAX_WORD_LENGTH)
return (NULL); return (NULL);
u += http_asso_values[((const uint8_t *)b)[u - 1]] + u += http_asso_values[(uint8_t)(e[-1])] +
http_asso_values[((const uint8_t *)b)[0]]; http_asso_values[(uint8_t)(b[0])];
if (u > GPERF_MAX_HASH_VALUE) if (u > GPERF_MAX_HASH_VALUE)
return (NULL); return (NULL);
retval = &http_hdrflg[u]; retval = &http_hdrflg[u];
......
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