lkml.org 
[lkml]   [2006]   [Mar]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
DateSat, 25 Mar 2006 19:41:56 +0100 (MET)
FromJan Engelhardt <>
SubjectRe: [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/

\
 
 \ /
  Last update: 2006-03-25 19:45    [from the cache]
©2003-2010