diff options
author | Phillip Lougher <phillip@lougher.demon.co.uk> | 2010-04-22 19:24:22 -0400 |
---|---|---|
committer | Phillip Lougher <phillip@lougher.demon.co.uk> | 2010-04-24 21:09:05 -0400 |
commit | 370ec3d1ed9d76ba992e5b9b7d7d10700014d436 (patch) | |
tree | 87065ba9c5f19b29c172267bcd971d655a7d6af6 /fs/squashfs | |
parent | 1cb08e97389bb603e1b999312d9686c8faf0187a (diff) |
squashfs: add missing buffer free
Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
Diffstat (limited to 'fs/squashfs')
-rw-r--r-- | fs/squashfs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c index 07ceeb8d8f53..48b6f4a385a6 100644 --- a/fs/squashfs/super.c +++ b/fs/squashfs/super.c | |||
@@ -354,6 +354,7 @@ static void squashfs_put_super(struct super_block *sb) | |||
354 | kfree(sbi->id_table); | 354 | kfree(sbi->id_table); |
355 | kfree(sbi->fragment_index); | 355 | kfree(sbi->fragment_index); |
356 | kfree(sbi->meta_index); | 356 | kfree(sbi->meta_index); |
357 | kfree(sbi->inode_lookup_table); | ||
357 | kfree(sb->s_fs_info); | 358 | kfree(sb->s_fs_info); |
358 | sb->s_fs_info = NULL; | 359 | sb->s_fs_info = NULL; |
359 | } | 360 | } |