public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* Re: [PATCH] [mtd] fixed faulty check
@ 2009-07-30 12:49 Stoyan Gaydarov
  2009-07-30 13:03 ` Sebastian Andrzej Siewior
  0 siblings, 1 reply; 11+ messages in thread
From: Stoyan Gaydarov @ 2009-07-30 12:49 UTC (permalink / raw)
  To: linux-kernel
  Cc: Stoyan Gaydarov, David.Woodhouse, bigeasy, kay.sievers, linux-mtd,
	sr, gregkh

Resubmit of a patch with some additions, see http://lkml.org/lkml/2009/7/30/97

Signed-off-by: Stoyan Gaydarov <sgayda2@uiuc.edu>
---
 drivers/mtd/maps/physmap_of.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 39d357b..e7ab5f0 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -215,7 +215,8 @@ static int __devinit of_flash_probe(struct of_device *dev,
 		goto err_out;
 
 	mtd_list = kzalloc(sizeof(struct mtd_info) * count, GFP_KERNEL);
-	if (!info)
+	if (!mtd_list)
+		kfree(info);
 		goto err_out;
 
 	dev_set_drvdata(&dev->dev, info);
-- 
1.6.3.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [PATCH] [mtd] fixed faulty check
@ 2009-07-30 14:47 Stoyan Gaydarov
  2009-07-30 15:07 ` vimal singh
  0 siblings, 1 reply; 11+ messages in thread
From: Stoyan Gaydarov @ 2009-07-30 14:47 UTC (permalink / raw)
  To: bigeasy; +Cc: linux-mtd, Stoyan Gaydarov, vimal.newwork

This patch fixes a spelling error that has resulted from copy and pasting. The location of the error was found using a semantic patch but the semantic patch was not trying to find these errors. After looking things over it seemed logical that this change was needed.

The patch also makes sure mtd_list is not being freed if it has not been allocated

Signed-off-by: Stoyan Gaydarov <sgayda2@uiuc.edu>
---
 drivers/mtd/maps/physmap_of.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 39d357b..96a1c50 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -215,8 +215,8 @@ static int __devinit of_flash_probe(struct of_device *dev,
 		goto err_out;
 
 	mtd_list = kzalloc(sizeof(struct mtd_info) * count, GFP_KERNEL);
-	if (!info)
-		goto err_out;
+	if (!mtd_list)
+		goto err_out_no_free;
 
 	dev_set_drvdata(&dev->dev, info);
 
@@ -338,6 +338,7 @@ static int __devinit of_flash_probe(struct of_device *dev,
 
 err_out:
 	kfree(mtd_list);
+err_out_no_free:
 	of_flash_remove(dev);
 
 	return err;
-- 
1.6.3.3

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

end of thread, other threads:[~2009-07-30 15:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-30 12:49 [PATCH] [mtd] fixed faulty check Stoyan Gaydarov
2009-07-30 13:03 ` Sebastian Andrzej Siewior
2009-07-30 13:39   ` vimal singh
2009-07-30 13:47     ` Sebastian Andrzej Siewior
2009-07-30 14:14       ` vimal singh
     [not found]         ` <4A71AD5E.4080704@uiuc.edu>
2009-07-30 14:34           ` vimal singh
2009-07-30 14:53           ` Sebastian Andrzej Siewior
2009-07-30 15:13             ` vimal singh
     [not found]               ` <4A71B940.80607@uiuc.edu>
2009-07-30 15:24                 ` vimal singh
  -- strict thread matches above, loose matches on Subject: below --
2009-07-30 14:47 Stoyan Gaydarov
2009-07-30 15:07 ` vimal singh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox