commit | 0463bb4e8d2f717a9bf3be6cc12c0aec51cc261d | [log] [tgz] |
---|---|---|
author | Jim Meyering <meyering@redhat.com> | Wed Oct 01 19:09:04 2008 -0400 |
committer | Chris Mason <chris.mason@oracle.com> | Wed Oct 01 19:09:04 2008 -0400 |
tree | 08d4cfb8e0ddbada2399e2d4477fdf29b2521cd3 | |
parent | 75ccf47d13bfb66de7faf596bfe497b9af7aaa40 [diff] [blame] |
Btrfs: disk-io.c (open_ctree): Don't deref. NULL upon failed kzalloc Signed-off-by: Chris Mason <chris.mason@oracle.com>
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 5ee10d3..41b7d24 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c
@@ -1371,7 +1371,8 @@ struct btrfs_super_block *disk_super; - if (!extent_root || !tree_root || !fs_info) { + if (!extent_root || !tree_root || !fs_info || + !chunk_root || !dev_root) { err = -ENOMEM; goto fail; }