Reviewing Squid-2.HEAD changes and sorting/grouping them a bit I
stumbled over your change to add casts in various isspace() calls which
looks a bit odd.

http://www.squid-cache.org/Versions/v2/HEAD/changesets/11290.patch

-    for (; i < hmsg->req_end && (isspace(hmsg->buf[i])); i++);
+    for (; i < hmsg->req_end && (isspace((int) hmsg->buf[i])); i++);

Generally this is not a safe cast. The ctype family of functions want
the same kind of "C character" as returned by getchar etc. That's an
integer carrying an unsigned char or -1.

As it's a very common coding error most C libraries accept char input to
these functions and might even produce correct results on high octets,
but not all (some may even segfault).

What was the warnings you fixed with these casts? I suspect you only
silenced a valid warning here without fixing the cause..

Regards
Henrik

Attachment: signature.asc
Description: Detta är en digitalt signerad meddelandedel

Reply via email to