From 84e55065ea9bef999f068de65c3eed0c9cc42fac Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 14 Jun 2006 16:49:37 +0000 Subject: 2006-06-14 Ross Burton * glib/dbus-gobject.c: Free a leaking GArray (surely not!) in dbus_g_method_return. --- ChangeLog | 5 +++++ glib/dbus-gobject.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 98402324..e4773d5d 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 3e30dc2e..1427a34e 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); } /** -- cgit