]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
2006-06-14 Ross Burton <ross@openedhand.com>
authorRoss Burton <ross@openedhand.com>
Wed, 14 Jun 2006 16:49:37 +0000 (16:49 +0000)
committerRoss Burton <ross@openedhand.com>
Wed, 14 Jun 2006 16:49:37 +0000 (16:49 +0000)
* glib/dbus-gobject.c:
Free a leaking GArray (surely not!) in dbus_g_method_return.

ChangeLog
glib/dbus-gobject.c

index 98402324ad4856f39df4286b6a2790985e5f355e..e4773d5db542b183fda1653870de3239ba25548e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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:
index 3e30dc2e6ee1f2fbbb5f1bc4e5fa0fdb5c979d21..1427a34eca674c012d7e49d215b95d005e625099 100644 (file)
@@ -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);
 }
 
 /**