diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-23 23:38:27 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-26 22:22:24 -0500 |
commit | afc70ed05a07bfe171f7a5b8fdc80bdb073d314f (patch) | |
tree | 817642530572c378ceb2e5b56fb4f2b189beb11f /fs/affs | |
parent | b04da8bfdfbbd79544cab2fadfdc12e87eb01600 (diff) | |
download | linux-3.10-afc70ed05a07bfe171f7a5b8fdc80bdb073d314f.tar.gz linux-3.10-afc70ed05a07bfe171f7a5b8fdc80bdb073d314f.tar.bz2 linux-3.10-afc70ed05a07bfe171f7a5b8fdc80bdb073d314f.zip |
Fix a leak in affs_fill_super()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/affs')
-rw-r--r-- | fs/affs/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/affs/super.c b/fs/affs/super.c index 104fdcb3a7f..b2a5958c619 100644 --- 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 */ |