fs/btrfs/volumes.c: add missing free_fs_devices

Free fs_devices as done in the error-handling code just below.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
This commit is contained in:
Julia Lawall 2012-04-14 11:24:33 +02:00 committed by David Sterba
parent 8a3db1849e
commit 48d282326b

View file

@ -4352,8 +4352,10 @@ static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
ret = __btrfs_open_devices(fs_devices, FMODE_READ, ret = __btrfs_open_devices(fs_devices, FMODE_READ,
root->fs_info->bdev_holder); root->fs_info->bdev_holder);
if (ret) if (ret) {
free_fs_devices(fs_devices);
goto out; goto out;
}
if (!fs_devices->seeding) { if (!fs_devices->seeding) {
__btrfs_close_devices(fs_devices); __btrfs_close_devices(fs_devices);