2013/1/11 Marek Vasut <[email protected]>: > In case a function argument is known/fixed size array in C, the argument is > still decoyed as pointer instead ( T f(U n[k]) ~= T fn(U *n) ) and therefore > calling sizeof on the function argument will result in the size of the > pointer, > not the size of the array. > > The VFAT code contains such a bug, this patch fixes it. > > Reported-by: Aaron Williams <[email protected]> > Signed-off-by: Marek Vasut <[email protected]> > Cc: Tom Rini <[email protected]> > Cc: Aaron Williams <[email protected]> > --- > fs/fat/fat.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)
Tested-by: Michal Simek <[email protected]> Thanks, Michal -- Michal Simek, Ing. (M.Eng) w: www.monstr.eu p: +42-0-721842854 Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/ Maintainer of Linux kernel - Xilinx Zynq ARM architecture Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

