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

From: Jan Engelhardt
Date: Sat Mar 25 2006 - 13:39:38 EST



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


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