From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from rcsinet15.oracle.com ([148.87.113.117]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1RTTcy-0000cA-SU for linux-mtd@lists.infradead.org; Thu, 24 Nov 2011 07:21:49 +0000 Date: Thu, 24 Nov 2011 10:21:18 +0300 From: Dan Carpenter To: David Woodhouse Subject: [patch] mtd/docg3: fix error handling in docg3_probe() Message-ID: <20111124072117.GC14122@elgon.mountain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Cc: linux-mtd@lists.infradead.org, kernel-janitors@vger.kernel.org, Robert Jarzmik List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , There was a kfree(docg3_floors); missing from the error handling here. Also we set docg3_floors[floor] = mtd; when mtd was an ERR_PTR and then we call doc_release_device() on it. I reworked it a bit, so hopefully the code is more clear now. Signed-off-by: Dan Carpenter diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c index 27c4fea..bfc1ea1 100644 --- a/drivers/mtd/devices/docg3.c +++ b/drivers/mtd/devices/docg3.c @@ -1110,21 +1110,24 @@ static int __init docg3_probe(struct platform_device *pdev) if (!docg3_floors) goto nomem; - ret = 0; for (floor = 0; floor < DOC_MAX_NBFLOORS; floor++) { mtd = doc_probe_device(base, floor, dev); - if (floor == 0 && !mtd) - goto notfound; - if (!IS_ERR_OR_NULL(mtd)) - ret = mtd_device_parse_register(mtd, part_probes, - NULL, NULL, 0); - else + if (IS_ERR(mtd)) { ret = PTR_ERR(mtd); + goto err_probe; + } + if (!mtd) { + if (floor == 0) + goto notfound; + else + continue; + } docg3_floors[floor] = mtd; + ret = mtd_device_parse_register(mtd, part_probes, NULL, NULL, + 0); if (ret) goto err_probe; - if (mtd) - found++; + found++; } if (!found) @@ -1138,9 +1141,11 @@ notfound: ret = -ENODEV; dev_info(dev, "No supported DiskOnChip found\n"); err_probe: - for (floor = 0; floor < DOC_MAX_NBFLOORS; floor++) + for (floor = 0; floor < DOC_MAX_NBFLOORS; floor++) { if (docg3_floors[floor]) doc_release_device(docg3_floors[floor]); + } + kfree(docg3_floors); nomem: iounmap(base); noress: