Skip to content

Commit ae5475e

Browse files
committed
qcow2: Fix qcow2_truncate() error return value
If qcow2_alloc_clusters_at() returns an error, we do need to negate it to get back the positive errno code for error_setg_errno(), but we still need to return the negative error code. Fixes: 772d1f9 Signed-off-by: Kevin Wolf <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]>
1 parent 7c89526 commit ae5475e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

block/qcow2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3597,7 +3597,7 @@ static int qcow2_truncate(BlockDriverState *bs, int64_t offset,
35973597
if (clusters_allocated < 0) {
35983598
error_setg_errno(errp, -clusters_allocated,
35993599
"Failed to allocate data clusters");
3600-
return -clusters_allocated;
3600+
return clusters_allocated;
36013601
}
36023602

36033603
assert(clusters_allocated == nb_new_data_clusters);

0 commit comments

Comments
 (0)