projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cb08e9
)
squashfs: add missing buffer free
author
Phillip Lougher
<phillip@lougher.demon.co.uk>
Thu, 22 Apr 2010 23:24:22 +0000
(
00:24
+0100)
committer
Phillip Lougher
<phillip@lougher.demon.co.uk>
Sun, 25 Apr 2010 01:09:05 +0000
(
02:09
+0100)
Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
fs/squashfs/super.c
patch
|
blob
|
history
diff --git
a/fs/squashfs/super.c
b/fs/squashfs/super.c
index
07ceeb8
..
48b6f4a
100644
(file)
--- a/
fs/squashfs/super.c
+++ b/
fs/squashfs/super.c
@@
-354,6
+354,7
@@
static void squashfs_put_super(struct super_block *sb)
kfree(sbi->id_table);
kfree(sbi->fragment_index);
kfree(sbi->meta_index);
+ kfree(sbi->inode_lookup_table);
kfree(sb->s_fs_info);
sb->s_fs_info = NULL;
}