| Submitter | Richard Weinberger |
|---|---|
| Date | June 29, 2012, 3:14 p.m. |
| Message ID | <1340982869-77042-2-git-send-email-richard@nod.at> |
| Download | mbox | patch |
| Permalink | /patch/168131/ |
| State | New |
| Headers | show |
Comments
Patch
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);
Signed-off-by: Richard Weinberger <richard@nod.at> --- drivers/mtd/ubi/attach.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)