Re: [-mm PATCH][4/4] net: signed vs unsigned cleanup innet/ipv4/raw.c

From: David S. Miller
Date: Wed Jun 15 2005 - 16:38:53 EST


From: Jesper Juhl <juhl-lkml@xxxxxx>
Date: Wed, 15 Jun 2005 23:32:22 +0200 (CEST)

> - if (length >= sizeof(*iph) && iph->ihl * 4 <= length) {
> + if (length >= sizeof(*iph) && (size_t)(iph->ihl * 4) <= length) {

Would changing the "4" into "4U" kill this warning just the same?

I think I'd prefer that.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/