
6 Oct
2011
6 Oct
'11
6:24 p.m.
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