Ver código fonte

mtd: mxc_nand: fix read past buffer end

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Acked-by: Sascha hauer <s.hauer@pengutronix.de>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Baruch Siach 14 anos atrás
pai
commit
5d9d993620
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      drivers/mtd/nand/mxc_nand.c

+ 2 - 2
drivers/mtd/nand/mxc_nand.c

@@ -641,9 +641,9 @@ static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
 
 	n = min(n, len);
 
-	memcpy(buf, host->data_buf + col, len);
+	memcpy(buf, host->data_buf + col, n);
 
-	host->buf_start += len;
+	host->buf_start += n;
 }
 
 /* Used by the upper layer to verify the data in NAND Flash