Commit afc70ed0 authored by Al Viro's avatar Al Viro

Fix a leak in affs_fill_super()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b04da8bf
...@@ -316,6 +316,8 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent) ...@@ -316,6 +316,8 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent)
&blocksize,&sbi->s_prefix, &blocksize,&sbi->s_prefix,
sbi->s_volume, &mount_flags)) { sbi->s_volume, &mount_flags)) {
printk(KERN_ERR "AFFS: Error parsing options\n"); printk(KERN_ERR "AFFS: Error parsing options\n");
kfree(sbi->s_prefix);
kfree(sbi);
return -EINVAL; return -EINVAL;
} }
/* N.B. after this point s_prefix must be released */ /* N.B. after this point s_prefix must be released */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment