All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: nand: mxc_nand: fix a possible NULL dereference
@ 2015-11-12  7:46 LABBE Corentin
  2015-11-12  8:03 ` Frans Klaver
  2015-11-12  8:19 ` Uwe Kleine-König
  0 siblings, 2 replies; 12+ messages in thread
From: LABBE Corentin @ 2015-11-12  7:46 UTC (permalink / raw)
  To: baruch, clabbe.montjoie, computersforpeace, dwmw2, fransklaver,
	k.kozlowski.k, luis, s.hauer, u.kleine-koenig
  Cc: linux-kernel, linux-mtd

of_match_device could return NULL, and so cause a NULL pointer
dereference later.

Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
---
 drivers/mtd/nand/mxc_nand.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
index 136e73a..9e42431 100644
--- a/drivers/mtd/nand/mxc_nand.c
+++ b/drivers/mtd/nand/mxc_nand.c
@@ -1464,8 +1464,7 @@ static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
 {
 	struct device_node *np = host->dev->of_node;
 	struct mxc_nand_platform_data *pdata = &host->pdata;
-	const struct of_device_id *of_id =
-		of_match_device(mxcnd_dt_ids, host->dev);
+	const struct of_device_id *of_id;
 	int buswidth;
 
 	if (!np)
@@ -1482,6 +1481,9 @@ static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
 
 	pdata->width = buswidth / 8;
 
+	of_id = of_match_device(mxcnd_dt_ids, host->dev);
+	if (!of_id)
+		return -ENODEV;
 	host->devtype_data = of_id->data;
 
 	return 0;
-- 
2.4.10


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-11-16 19:12 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-12  7:46 [PATCH] mtd: nand: mxc_nand: fix a possible NULL dereference LABBE Corentin
2015-11-12  8:03 ` Frans Klaver
2015-11-12  8:26   ` Uwe Kleine-König
2015-11-12  8:36     ` Frans Klaver
2015-11-12  8:53       ` Uwe Kleine-König
2015-11-12  8:57         ` Frans Klaver
2015-11-12  9:01           ` Uwe Kleine-König
2015-11-12  8:19 ` Uwe Kleine-König
2015-11-12 10:03   ` LABBE Corentin
2015-11-12 10:14     ` Uwe Kleine-König
2015-11-16 18:33   ` Brian Norris
2015-11-16 19:12     ` Corentin LABBE

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.