[libvirt] [libvirt-glib 2/3] Don't use empty message when building a GError

Christophe Fergeau cfergeau at redhat.com
Thu Oct 6 18:24:11 UTC 2011


After testing that 'message' is NULL, gvir_xml_error_new_literal
is using it to build a GError. What was meant was to use
xerr->message.
---
 libvirt-gconfig/libvirt-gconfig-object.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libvirt-gconfig/libvirt-gconfig-object.c b/libvirt-gconfig/libvirt-gconfig-object.c
index 358c9e1..95b147f 100644
--- a/libvirt-gconfig/libvirt-gconfig-object.c
+++ b/libvirt-gconfig/libvirt-gconfig-object.c
@@ -83,7 +83,7 @@ static GError *gvir_xml_error_new_literal(GQuark domain,
         return g_error_new(domain,
                            code,
                            "%s",
-                           message);
+                           xerr->message);
 }
 
 
-- 
1.7.6.4




More information about the libvir-list mailing list