projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b04da8b
)
Fix a leak in affs_fill_super()
author
Al Viro
<viro@zeniv.linux.org.uk>
Sun, 24 Jan 2010 04:38:27 +0000
(23:38 -0500)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 27 Jan 2010 03:22:24 +0000
(22:22 -0500)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/affs/super.c
patch
|
blob
|
history
diff --git
a/fs/affs/super.c
b/fs/affs/super.c
index
104fdcb
..
b2a5958
100644
(file)
--- a/
fs/affs/super.c
+++ b/
fs/affs/super.c
@@
-316,6
+316,8
@@
static int affs_fill_super(struct super_block *sb, void *data, int silent)
&blocksize,&sbi->s_prefix,
sbi->s_volume, &mount_flags)) {
printk(KERN_ERR "AFFS: Error parsing options\n");
+ kfree(sbi->s_prefix);
+ kfree(sbi);
return -EINVAL;
}
/* N.B. after this point s_prefix must be released */