From: Ilya Dryomov Date: Tue, 8 Nov 2011 17:15:05 +0000 (+0200) Subject: Btrfs: fix subvol_name leak on error in btrfs_mount() X-Git-Tag: v3.2-rc2~22^2~9^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f23c8af8ca2789eeb0ab9ea90c214f9694d96cc5;p=platform%2Fkernel%2Flinux-3.10.git Btrfs: fix subvol_name leak on error in btrfs_mount() btrfs_parse_early_options() can fail due to error while scanning devices (-o device= option), but still strdup() subvol_name string: mount -o subvol=SUBV,device=BAD_DEVICE So free subvol_name string on error. Signed-off-by: Ilya Dryomov --- diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 6befcaf..58e9492 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -905,8 +905,10 @@ static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags, error = btrfs_parse_early_options(data, mode, fs_type, &subvol_name, &subvol_objectid, &subvol_rootid, &fs_devices); - if (error) + if (error) { + kfree(subvol_name); return ERR_PTR(error); + } if (subvol_name) { root = mount_subvol(subvol_name, flags, device_name, data);