mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
jffs2: leaking jffs2_summary in function jffs2_scan_medium
In case of an error returned by file_dirty() 's' is not freed as the cleanup path is skipped. Reported by Coverity. Signed-off-by: Christian Engelmayer <christian.engelmayer@frequentis.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
272023df26
commit
a2ab0ce09e
@ -196,7 +196,7 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
|
||||
if (c->nextblock) {
|
||||
ret = file_dirty(c, c->nextblock);
|
||||
if (ret)
|
||||
return ret;
|
||||
goto out;
|
||||
/* deleting summary information of the old nextblock */
|
||||
jffs2_sum_reset_collected(c->summary);
|
||||
}
|
||||
@ -207,7 +207,7 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
|
||||
} else {
|
||||
ret = file_dirty(c, jeb);
|
||||
if (ret)
|
||||
return ret;
|
||||
goto out;
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user