ret = clear_extent_bits(&prev_trans->pinned_extents, start, end,
                                        EXTENT_DIRTY);
                if (ret)
-                       goto err;
+                       goto out;
        }
 
        ret = clear_extent_bits(&trans->transaction->pinned_extents, start, end,
                                EXTENT_DIRTY);
-       if (ret)
-               goto err;
+out:
        mutex_unlock(&fs_info->unused_bg_unpin_mutex);
        if (prev_trans)
                btrfs_put_transaction(prev_trans);
 
-       return true;
-
-err:
-       mutex_unlock(&fs_info->unused_bg_unpin_mutex);
-       if (prev_trans)
-               btrfs_put_transaction(prev_trans);
-       btrfs_dec_block_group_ro(bg);
-       return false;
+       return ret == 0;
 }
 
 /*
                 * We could have pending pinned extents for this block group,
                 * just delete them, we don't care about them anymore.
                 */
-               if (!clean_pinned_extents(trans, block_group))
+               if (!clean_pinned_extents(trans, block_group)) {
+                       btrfs_dec_block_group_ro(block_group);
                        goto end_trans;
+               }
 
                /*
                 * At this point, the block_group is read only and should fail