Browse Source

Btrfs: disk-io.c (open_ctree): avoid leaks upon allocation failure

Signed-off-by: Chris Mason <chris.mason@oracle.com>
Jim Meyering 16 years ago
parent
commit
83afeac42c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      fs/btrfs/disk-io.c

+ 2 - 0
fs/btrfs/disk-io.c

@@ -1699,6 +1699,8 @@ fail:
 	kfree(tree_root);
 	kfree(tree_root);
 	bdi_destroy(&fs_info->bdi);
 	bdi_destroy(&fs_info->bdi);
 	kfree(fs_info);
 	kfree(fs_info);
+	kfree(chunk_root);
+	kfree(dev_root);
 	return ERR_PTR(err);
 	return ERR_PTR(err);
 }
 }