summaryrefslogtreecommitdiff
path: root/block-qcow2.c
diff options
context:
space:
mode:
Diffstat (limited to 'block-qcow2.c')
-rw-r--r--block-qcow2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block-qcow2.c b/block-qcow2.c
index 736915cffe..fa664a74c9 100644
--- a/block-qcow2.c
+++ b/block-qcow2.c
@@ -669,7 +669,7 @@ static uint64_t get_cluster_offset(BlockDriverState *bs,
l2_offset &= ~QCOW_OFLAG_COPIED;
l2_table = l2_load(bs, l2_offset);
if (l2_table == NULL)
- goto out;
+ return 0;
/* find the cluster offset for the given disk offset */