dect
/
linux-2.6
Archived
13
0
Fork 0

ext4: Fix memory leak in ext4_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:
Manish Katiyar 2009-05-17 23:52:44 -04:00 committed by Theodore Ts'o
parent 0568c51893
commit f68301656b
1 changed files with 1 additions and 0 deletions

View File

@ -2924,6 +2924,7 @@ failed_mount:
brelse(bh);
out_fail:
sb->s_fs_info = NULL;
kfree(sbi->s_blockgroup_lock);
kfree(sbi);
lock_kernel();
return ret;