mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 01:34:11 +03:00
qemu: snapshot: Terminate job when memory compression program isn't found
If the compression program for external snapshot memory image isn't
found we exitted the function without terminating the domain job. This
caused the domain to be unusable.
The problem was introduced in commit 7df5093f
.
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1097503
This commit is contained in:
parent
353cf3707a
commit
71802685ba
@ -13207,13 +13207,14 @@ qemuDomainSnapshotCreateActiveExternal(virConnectPtr conn,
|
||||
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
||||
_("Invalid snapshot image format specified "
|
||||
"in configuration file"));
|
||||
goto cleanup;
|
||||
goto endjob;
|
||||
}
|
||||
|
||||
if (!qemuCompressProgramAvailable(compressed)) {
|
||||
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
||||
_("Compression program for image format "
|
||||
"in configuration file isn't available"));
|
||||
goto cleanup;
|
||||
goto endjob;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user