summaryrefslogtreecommitdiffstats
path: root/fs/ext2/super.c
diff options
context:
space:
mode:
authorManish Katiyar2009-05-18 05:52:51 +0200
committerTheodore Ts'o2009-05-18 05:52:51 +0200
commit0f7ee7c17241915fdaff49d1a36f5aafd80a7dce (patch)
tree463d3882e4df4d8a8a86868a975b37218c1b3192 /fs/ext2/super.c
parentext3: Fix memory leak in ext3_fill_super() in case of a failed mount (diff)
downloadkernel-qcow2-linux-0f7ee7c17241915fdaff49d1a36f5aafd80a7dce.tar.gz
kernel-qcow2-linux-0f7ee7c17241915fdaff49d1a36f5aafd80a7dce.tar.xz
kernel-qcow2-linux-0f7ee7c17241915fdaff49d1a36f5aafd80a7dce.zip
ext2: Fix memory leak in ext2_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/ext2/super.c')
-rw-r--r--fs/ext2/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index 5c4afe652245..e3c748faf2db 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -1093,6 +1093,7 @@ failed_mount:
brelse(bh);
failed_sbi:
sb->s_fs_info = NULL;
+ kfree(sbi->s_blockgroup_lock);
kfree(sbi);
return ret;
}