Signed-off-by: Chris Mason <chris.mason@oracle.com>
        ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
        if (ret > 0)
                ret = -EIO;
-       if (ret < 0)
+       if (ret < 0) {
+               btrfs_end_transaction(trans, root);
                goto out;
+       }
 
        clear_extent_bits(&info->block_group_cache, key.objectid,
                          key.objectid + key.offset - 1,
 
        leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
                                      objectid, trans->transid, 0, 0,
                                      0, 0);
-       if (IS_ERR(leaf))
-               return PTR_ERR(leaf);
+       if (IS_ERR(leaf)) {
+               ret = PTR_ERR(leaf);
+               goto fail;
+       }
 
        btrfs_set_header_nritems(leaf, 0);
        btrfs_set_header_level(leaf, 0);