summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem Bityutskiy2009-06-08 18:28:18 +0200
committerArtem Bityutskiy2009-06-10 15:13:27 +0200
commit21d08bbcb19d9cdef8ab5b584f25b50d842068e9 (patch)
treea50210d1fe832fa9273483a6f4ba42102d8c3828
parentUBI: print amount of reserved PEBs (diff)
downloadkernel-qcow2-linux-21d08bbcb19d9cdef8ab5b584f25b50d842068e9.tar.gz
kernel-qcow2-linux-21d08bbcb19d9cdef8ab5b584f25b50d842068e9.tar.xz
kernel-qcow2-linux-21d08bbcb19d9cdef8ab5b584f25b50d842068e9.zip
UBI: fix kmem_cache_free on error patch
'kmem_cache_free()' oopeses if NULL is passed, and there is one error-path place where UBI may call it with NULL object. This problem was pointed to by Adrian Hunter. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r--drivers/mtd/ubi/wl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c
index f25ae2910ad0..acb5520f7f3d 100644
--- a/drivers/mtd/ubi/wl.c
+++ b/drivers/mtd/ubi/wl.c
@@ -826,7 +826,8 @@ static int wear_leveling_worker(struct ubi_device *ubi, struct ubi_work *wrk,
err = schedule_erase(ubi, e1, 0);
if (err) {
kmem_cache_free(ubi_wl_entry_slab, e1);
- kmem_cache_free(ubi_wl_entry_slab, e2);
+ if (e2)
+ kmem_cache_free(ubi_wl_entry_slab, e2);
goto out_ro;
}