]> git.sur5r.net Git - u-boot/commit
vfat: Fix mkcksum argument sizes
authorMarek Vasut <marex@denx.de>
Fri, 11 Jan 2013 03:35:48 +0000 (03:35 +0000)
committerTom Rini <trini@ti.com>
Thu, 31 Jan 2013 19:46:43 +0000 (14:46 -0500)
commitbc8f446c17fe394a085cf6dd1c04ffac869de2b9
treebdfaa6d089709870f2286b4ae6099c28201d7f3e
parentad394e027f32eb76f74bc4133446ae2e2b82dbfe
vfat: Fix mkcksum argument sizes

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 <Aaron.Williams@cavium.com>
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <tom.rini@gmail.com>
Cc: Aaron Williams <Aaron.Williams@cavium.com>
Tested-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
fs/fat/fat.c