summaryrefslogtreecommitdiff
path: root/fs/ext3
diff options
context:
space:
mode:
authorManish Katiyar <mkatiyar@gmail.com>2009-05-17 23:52:47 -0400
committerTheodore Ts'o <tytso@mit.edu>2009-05-17 23:52:47 -0400
commitde5ce037304f2c88a319b1c3b808ab0c4c618c1c (patch)
tree1ae0fd2b9f571288f90f93f72967d5fc748869e3 /fs/ext3
parentf68301656b5f5d2de104f2687add6beeb8f3c3b9 (diff)
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>
Diffstat (limited to 'fs/ext3')
-rw-r--r--fs/ext3/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index 599dbfe504c3..d8b73d4abe3e 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/super.c
@@ -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;