diff options
author | Florin Malita <fmalita@gmail.com> | 2007-07-19 22:45:18 +0200 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-08-02 22:44:10 +0200 |
commit | 47af05dd4b98b57eeb682596a0df42d106e02167 (patch) | |
tree | 35c5c38928e94fbf3b85e18a2a8108660150e472 | |
parent | [JFFS2] Print correct node offset when complaining about broken data CRC (diff) | |
download | linux-47af05dd4b98b57eeb682596a0df42d106e02167.tar.xz linux-47af05dd4b98b57eeb682596a0df42d106e02167.zip |
[MTD] Fix potential leak in rfd_ftl_add_mtd
This fixes a leak in the !mtd->erasesize error path (Coverity 1765).
Signed-off-by: Florin Malita <fmalita@gmail.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
-rw-r--r-- | drivers/mtd/rfd_ftl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/rfd_ftl.c b/drivers/mtd/rfd_ftl.c index d4b1ba8f23ef..006c03aacb55 100644 --- a/drivers/mtd/rfd_ftl.c +++ b/drivers/mtd/rfd_ftl.c @@ -779,6 +779,7 @@ static void rfd_ftl_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd) else { if (!mtd->erasesize) { printk(KERN_WARNING PREFIX "please provide block_size"); + kfree(part); return; } else |