Messages in this thread |  | | | Date | Sat, 25 Mar 2006 19:41:56 +0100 (MET) | | From | Jan Engelhardt <> | | Subject | Re: [2.6 patch] fix array over-run in efi.c |
| |
>- 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |