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

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


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

diff --git a/libvirt-glib/libvirt-glib-error.c b/libvirt-glib/libvirt-glib-error.c
index 7afa802..f59b464 100644
--- a/libvirt-glib/libvirt-glib-error.c
+++ b/libvirt-glib/libvirt-glib-error.c
@@ -92,7 +92,7 @@ GError *gvir_error_new_literal(GQuark domain,
         return g_error_new(domain,
                            code,
                            "%s",
-                           message);
+                           verr->message);
 }
 
 /**
-- 
1.7.6.4




More information about the libvir-list mailing list