mirror of https://github.com/xqemu/xqemu.git
qcow2: Don't try to check tables that couldn't be loaded
Trying to check them leads to a second error message which is more confusing than helpful: Can't get refcount for cluster 0: Invalid argument ERROR cluster 0 refcount=-22 reference=1 Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
6882c8fa78
commit
f74550fd53
|
@ -1174,6 +1174,7 @@ int qcow2_check_refcounts(BlockDriverState *bs)
|
||||||
if (refcount1 < 0) {
|
if (refcount1 < 0) {
|
||||||
fprintf(stderr, "Can't get refcount for cluster %d: %s\n",
|
fprintf(stderr, "Can't get refcount for cluster %d: %s\n",
|
||||||
i, strerror(-refcount1));
|
i, strerror(-refcount1));
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
refcount2 = refcount_table[i];
|
refcount2 = refcount_table[i];
|
||||||
|
|
Loading…
Reference in New Issue