提交 5d9d9936 编写于 作者: B Baruch Siach 提交者: David Woodhouse

mtd: mxc_nand: fix read past buffer end

Signed-off-by: NBaruch Siach <baruch@tkos.co.il>
Acked-by: NSascha hauer <s.hauer@pengutronix.de>
Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
上级 74f1b724
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册