1
0
Fork 0

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

Signed-off-by: Chris Mason <chris.mason@oracle.com>
hifive-unleashed-5.1
Jim Meyering 2008-10-01 19:09:51 -04:00 committed by Chris Mason
parent 0463bb4e8d
commit 83afeac42c
1 changed files with 2 additions and 0 deletions

View File

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