diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-01 11:25:46 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-01 11:25:46 -0700 |
commit | 5c5d4e8eafd0e54c2134c23296b1d7996c304fe1 (patch) | |
tree | e994f543ad768eaa6736577b87989d56183b19e9 /fs/jffs2 | |
parent | fa172f40068b50f0ad7ae352a2466d0acc579e00 (diff) | |
parent | c276aca46d26aa2347320096f8ecdf5016795c14 (diff) | |
download | op-kernel-dev-5c5d4e8eafd0e54c2134c23296b1d7996c304fe1.zip op-kernel-dev-5c5d4e8eafd0e54c2134c23296b1d7996c304fe1.tar.gz |
Merge git://git.infradead.org/mtd-2.6
* git://git.infradead.org/mtd-2.6:
mtd: nand: fix build failure and incorrect return from omap_wait()
mtd: Use BLOCK_NIL consistently in NFTL/INFTL
mtd: m25p80 timeout too short for worst-case m25p16 devices
mtd: atmel_nand: Fix typo s/parititions/partitions/
mtd: cmdlineparts: Use 64-bit format when printing a debug message.
mtd: maps: Remove BUS_ID_SIZE from integrator_flash
jffs2: fix another potential leak on error path in scan.c
Diffstat (limited to 'fs/jffs2')
-rw-r--r-- | fs/jffs2/scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/scan.c b/fs/jffs2/scan.c index 7515e73..696686c 100644 --- a/fs/jffs2/scan.c +++ b/fs/jffs2/scan.c @@ -130,9 +130,9 @@ int jffs2_scan_medium(struct jffs2_sb_info *c) if (jffs2_sum_active()) { s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); if (!s) { - kfree(flashbuf); JFFS2_WARNING("Can't allocate memory for summary\n"); - return -ENOMEM; + ret = -ENOMEM; + goto out; } } |