[PATCH 01/11] UBI: Fastmap: Fix mem leak in error path

From: Richard Weinberger
Date: Fri Jun 29 2012 - 11:16:47 EST


Signed-off-by: Richard Weinberger <richard@xxxxxx>
---
drivers/mtd/ubi/attach.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/ubi/attach.c b/drivers/mtd/ubi/attach.c
index 3d9be42..bd3a8f5 100644
--- a/drivers/mtd/ubi/attach.c
+++ b/drivers/mtd/ubi/attach.c
@@ -1325,12 +1325,12 @@ int ubi_attach(struct ubi_device *ubi, int force_scan)

scan_ai = alloc_ai();
if (!scan_ai)
- goto out_ai;
+ goto out_wl;

err = scan_all(ubi, scan_ai);
if (err) {
kfree(scan_ai);
- goto out_ai;
+ goto out_wl;
}

self_check_eba(ubi, ai, scan_ai);
--
1.7.6.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/