Re: [2.6 patch] fix array over-run in efi.c

From: Adrian Bunk
Date: Sat Mar 25 2006 - 16:15:44 EST


On Sat, Mar 25, 2006 at 07:41:56PM +0100, Jan Engelhardt wrote:
>
> >- for (i = 0; i < sizeof(vendor) && *c16; ++i)
> >+ for (i = 0; i < (sizeof(vendor) - 1) && *c16; ++i)
>
> for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i)
> Should suffice.

That's irrelevant.
The important question is readability.

> Jan Engelhardt

cu
Adrian

--

"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed

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