From: Ross Burton Date: Wed, 14 Jun 2006 16:49:37 +0000 (+0000) Subject: 2006-06-14 Ross Burton X-Git-Tag: dbus-0.90~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84e55065ea9bef999f068de65c3eed0c9cc42fac;p=thirdparty%2Fdbus.git 2006-06-14 Ross Burton * glib/dbus-gobject.c: Free a leaking GArray (surely not!) in dbus_g_method_return. --- diff --git a/ChangeLog b/ChangeLog index 98402324a..e4773d5db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-14 Ross Burton + + * glib/dbus-gobject.c: + Free a leaking GArray (surely not!) in dbus_g_method_return. + 2006-06-14 Ross Burton * tools/Makefile.am: diff --git a/glib/dbus-gobject.c b/glib/dbus-gobject.c index 3e30dc2e6..1427a34ec 100644 --- a/glib/dbus-gobject.c +++ b/glib/dbus-gobject.c @@ -1981,6 +1981,7 @@ dbus_g_method_return (DBusGMethodInvocation *context, ...) dbus_g_message_unref (context->message); g_free (context); g_free (out_sig); + g_array_free (argsig, TRUE); } /**