summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-06-07 16:55:21 +0200
committerArtem Bityutskiy <artem.bityutskiy@intel.com>2011-09-11 14:02:05 +0200
commit96166056076af59d40e5b5aec5b09611c74cc911 (patch)
treeb651a45ff70485045dc931138ff07e54eaab1ea2 /drivers
parentmtd: document parse_mtd_partitions (diff)
downloadlinux-96166056076af59d40e5b5aec5b09611c74cc911.tar.xz
linux-96166056076af59d40e5b5aec5b09611c74cc911.zip
mtd: ndfc: fix a memory leak in ndfc_remove
Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/nand/ndfc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c
index cb66fd79f1fa..70c04ffa573c 100644
--- a/drivers/mtd/nand/ndfc.c
+++ b/drivers/mtd/nand/ndfc.c
@@ -283,6 +283,7 @@ static int __devexit ndfc_remove(struct platform_device *ofdev)
struct ndfc_controller *ndfc = dev_get_drvdata(&ofdev->dev);
nand_release(&ndfc->mtd);
+ kfree(ndfc->mtd.name);
return 0;
}