mtd: cs553x_nand: Fix kasprintf() usage
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Tue Jun 23 10:59:08 PDT 2015
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=bc349da0a6b3c6cf795b6a51e3f448d9d16a1686
Commit: bc349da0a6b3c6cf795b6a51e3f448d9d16a1686
Parent: 905cce7f4309f3ec19c1ed67edd68b7e67e88f3e
Author: Richard Weinberger <richard at nod.at>
AuthorDate: Mon Jun 1 23:10:51 2015 +0200
Committer: Brian Norris <computersforpeace at gmail.com>
CommitDate: Tue Jun 16 18:58:47 2015 -0700
mtd: cs553x_nand: Fix kasprintf() usage
kasprintf() does a dynamic memory allocation and can fail.
We have to handle that case.
Signed-off-by: Richard Weinberger <richard at nod.at>
Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
drivers/mtd/nand/cs553x_nand.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/drivers/mtd/nand/cs553x_nand.c b/drivers/mtd/nand/cs553x_nand.c
index 88109d3..aec6045 100644
--- a/drivers/mtd/nand/cs553x_nand.c
+++ b/drivers/mtd/nand/cs553x_nand.c
@@ -237,17 +237,23 @@ static int __init cs553x_init_one(int cs, int mmio, unsigned long adr)
/* Enable the following for a flash based bad block table */
this->bbt_options = NAND_BBT_USE_FLASH;
+ new_mtd->name = kasprintf(GFP_KERNEL, "cs553x_nand_cs%d", cs);
+ if (!new_mtd->name) {
+ err = -ENOMEM;
+ goto out_ior;
+ }
+
/* Scan to find existence of the device */
if (nand_scan(new_mtd, 1)) {
err = -ENXIO;
- goto out_ior;
+ goto out_free;
}
- new_mtd->name = kasprintf(GFP_KERNEL, "cs553x_nand_cs%d", cs);
-
cs553x_mtd[cs] = new_mtd;
goto out;
+out_free:
+ kfree(new_mtd->name);
out_ior:
iounmap(this->IO_ADDR_R);
out_mtd:
More information about the linux-mtd-cvs
mailing list