The patch titled fs/jffs2/scan.c: Fix error-path leak has been added to the -mm tree. Its filename is fs-jffs2-scanc-fix-error-path-leak.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fs/jffs2/scan.c: Fix error-path leak From: Amit Choudhary <amit2030@xxxxxxxxx> Signed-off-by: Amit Choudhary <amit2030@xxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/jffs2/scan.c | 1 + 1 files changed, 1 insertion(+) diff -puN fs/jffs2/scan.c~fs-jffs2-scanc-fix-error-path-leak fs/jffs2/scan.c --- a/fs/jffs2/scan.c~fs-jffs2-scanc-fix-error-path-leak +++ a/fs/jffs2/scan.c @@ -130,6 +130,7 @@ int jffs2_scan_medium(struct jffs2_sb_in 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; } _ Patches currently in -mm which might be from amit2030@xxxxxxxxx are git-dvb.patch fs-jffs2-scanc-fix-error-path-leak.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html