* Patrick Georgi <[EMAIL PROTECTED]> [070822 14:57]:
> Index: util/lar/stream.c
> ===================================================================
> --- util/lar/stream.c (revision 478)
> +++ util/lar/stream.c (working copy)
> @@ -666,7 +666,7 @@
>  
>       csum = 0;
>       for (walk = (u32 *) (lar->map + offset);
> -          walk < (u32 *) (temp + complen + hlen);
> +          walk < (u32 *) (lar->map + complen + hlen);

I would think it should be 

        walk < (u32 *) (lar->map + offset + complen + hlen)

because temp was copied to lar->map + offset before.

But I agree this needs fixing:

Acked-by: Stefan Reinauer <[EMAIL PROTECTED]>


-- 
coresystems GmbH • Brahmsstr. 16 • D-79104 Freiburg i. Br.
      Tel.: +49 761 7668825 • Fax: +49 761 7664613
Email: [EMAIL PROTECTED]  • http://www.coresystems.de/

-- 
linuxbios mailing list
linuxbios@linuxbios.org
http://www.linuxbios.org/mailman/listinfo/linuxbios

Reply via email to