Re: Linux 2.5.18-dj1

James Simmons (jsimmons@transvirtual.com)
Tue, 28 May 2002 10:31:04 -0700 (PDT)


> --- orig/drivers/video/fbcmap.c Fri May 3 11:12:44 2002
> +++ linux/drivers/video/fbcmap.c Fri May 10 19:39:38 2002
> @@ -150,9 +150,9 @@
> else
> tooff = from->start-to->start;
> size = to->len-tooff;
> - if (size > from->len-fromoff)
> + if (size > (int)(from->len-fromoff))
> size = from->len-fromoff;
> - if (size < 0)
> + if (size <= 0)
> return;
> size *= sizeof(u16);

I going to push the fix very soon to linus. I have a bunch of new updates.

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