Re: Linux 2.6.11.4

From: Hacksaw
Date: Tue Mar 15 2005 - 19:58:54 EST


+ while (dlen >= 2 && dlen >= data[1] && data[1] >= 2) {

Not that it matters much to me, since I don't have to maintain it, but
couldn't this be:

while (data[1] >= 2 && dlen >= data[1]) {

I think this captures the relationship and priority.
--
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD


-
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/