mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
UBIFS: fix a memory leak on error path.
In 'mount_ubifs()', in case of 'ubifs_leb_unmap()' falure, free allocated resources. Signed-off-by: Matthieu CASTET <matthieu.castet@parrot.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
6fb4374f6b
commit
c18de72fb3
@ -1320,7 +1320,7 @@ static int mount_ubifs(struct ubifs_info *c)
|
|||||||
*/
|
*/
|
||||||
err = ubifs_leb_unmap(c, c->gc_lnum);
|
err = ubifs_leb_unmap(c, c->gc_lnum);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
goto out_orphans;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = dbg_check_lprops(c);
|
err = dbg_check_lprops(c);
|
||||||
|
Loading…
Reference in New Issue
Block a user