mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virsh: save: report an error if XML file can't be read
Bug: https://bugzilla.redhat.com/show_bug.cgi?id=876868
This commit is contained in:
parent
2bbe624e1d
commit
58110b4887
@ -2966,8 +2966,10 @@ doSave(void *opaque)
|
||||
goto out;
|
||||
|
||||
if (xmlfile &&
|
||||
virFileReadAll(xmlfile, 8192, &xml) < 0)
|
||||
virFileReadAll(xmlfile, 8192, &xml) < 0) {
|
||||
vshReportError(ctl);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (((flags || xml)
|
||||
? virDomainSaveFlags(dom, to, xml, flags)
|
||||
|
Loading…
Reference in New Issue
Block a user