aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2014-03-12 12:52:36 +0000
committerGabor Juhos <juhosg@openwrt.org>2014-03-12 12:52:36 +0000
commitde8375d0199bca4964f173b1835772d75ad34b3c (patch)
tree842b0676addf3cb96b3cba5613853b61150708bd
parent6b3c5bee938e8f8bac0237b98a7e7e61a8df30a8 (diff)
downloadupstream-de8375d0199bca4964f173b1835772d75ad34b3c.tar.gz
upstream-de8375d0199bca4964f173b1835772d75ad34b3c.tar.bz2
upstream-de8375d0199bca4964f173b1835772d75ad34b3c.zip
ar71xx: ar934x_nfc: fix memory initialization bug
sizeof(array_from_function_definition) gives back the size of the pointer. sizeof(type) * array_size should be used in memset. Signed-off-by: David Völgyes <david.volgyes@gmail.com> Patchwork: http://patchwork.openwrt.org/patch/4950/ Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39890 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/dev-nfc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/dev-nfc.c b/target/linux/ar71xx/files/arch/mips/ath79/dev-nfc.c
index d140cd0eab..9b5256ecc2 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/dev-nfc.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/dev-nfc.c
@@ -43,7 +43,7 @@ static void __init ath79_nfc_init_resource(struct resource res[2],
unsigned long size,
int irq)
{
- memset(res, 0, sizeof(res));
+ memset(res, 0, sizeof(struct resource) * 2);
res[0].flags = IORESOURCE_MEM;
res[0].start = base;