btrfs-progs: fsck: Fix patch allocation check and leak in check_fs_first_inode
authorQu Wenruo <quwenruo@cn.fujitsu.com>
Mon, 24 Oct 2016 02:43:33 +0000 (10:43 +0800)
committerDavid Sterba <dsterba@suse.com>
Wed, 14 Dec 2016 14:06:34 +0000 (15:06 +0100)
Allocated 'path' in check_fs_first_inode() is not checked and for
btrfs_search_slot() error, it will leak 'path'.

Fix it.

Resolves-Coverity-CID: 1374098
Resolves-Coverity-CID: 1374099
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
cmds-check.c

index 22d3a66..d1ca679 100644 (file)
@@ -4940,13 +4940,15 @@ static int check_fs_first_inode(struct btrfs_root *root, unsigned int ext_ref)
        int ret;
 
        path = btrfs_alloc_path();
+       if (!path)
+               return -ENOMEM;
        key.objectid = 256;
        key.type = BTRFS_INODE_ITEM_KEY;
        key.offset = 0;
 
        ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
        if (ret < 0)
-               return ret;
+               goto out;
        if (ret > 0) {
                ret = 0;
                err |= INODE_ITEM_MISSING;
@@ -4956,6 +4958,7 @@ static int check_fs_first_inode(struct btrfs_root *root, unsigned int ext_ref)
        err &= ~LAST_ITEM;
        if (err && !ret)
                ret = -EIO;
+out:
        btrfs_free_path(path);
        return ret;
 }