[libvirt] [PATCH] virsh: save: report an error if XML file can't be read

Ján Tomko jtomko at redhat.com
Thu Nov 15 13:25:09 UTC 2012


Bug: https://bugzilla.redhat.com/show_bug.cgi?id=876868
---
 tools/virsh-domain.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c
index 86ed4d3..df38618 100644
--- a/tools/virsh-domain.c
+++ b/tools/virsh-domain.c
@@ -2945,8 +2945,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)
-- 
1.7.8.6




More information about the libvir-list mailing list