diff options
| author | Ross Burton <ross@openedhand.com> | 2006-06-14 16:49:37 +0000 | 
|---|---|---|
| committer | Ross Burton <ross@openedhand.com> | 2006-06-14 16:49:37 +0000 | 
| commit | 84e55065ea9bef999f068de65c3eed0c9cc42fac (patch) | |
| tree | 4dabd2d526cbf771b2435b7e51f242056c7ae7b7 | |
| parent | db64de230bfa4894f901ae8c63d947a93dc59139 (diff) | |
2006-06-14  Ross Burton  <ross@openedhand.com>
	* glib/dbus-gobject.c:
	Free a leaking GArray (surely not!) in dbus_g_method_return.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | glib/dbus-gobject.c | 1 | 
2 files changed, 6 insertions, 0 deletions
| @@ -1,5 +1,10 @@  2006-06-14  Ross Burton  <ross@openedhand.com> +	* glib/dbus-gobject.c: +	Free a leaking GArray (surely not!) in dbus_g_method_return. + +2006-06-14  Ross Burton  <ross@openedhand.com> +  	* tools/Makefile.am:  	* tools/dbus-monitor.c:  	Don't use the GLib bindings in dbus-monitor (patch from Ralf 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);  }  /** | 
