mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
ext3: Fix memory leak in ext3_fill_super() in case of a failed mount
Signed-off-by: Manish Katiyar <mkatiyar@gmail.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
f68301656b
commit
de5ce03730
1 changed files with 1 additions and 0 deletions
|
@ -2021,6 +2021,7 @@ failed_mount:
|
|||
brelse(bh);
|
||||
out_fail:
|
||||
sb->s_fs_info = NULL;
|
||||
kfree(sbi->s_blockgroup_lock);
|
||||
kfree(sbi);
|
||||
lock_kernel();
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue