summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2006-06-14 16:49:37 +0000
committerRoss Burton <ross@openedhand.com>2006-06-14 16:49:37 +0000
commit84e55065ea9bef999f068de65c3eed0c9cc42fac (patch)
tree4dabd2d526cbf771b2435b7e51f242056c7ae7b7
parentdb64de230bfa4894f901ae8c63d947a93dc59139 (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--ChangeLog5
-rw-r--r--glib/dbus-gobject.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 98402324..e4773d5d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}
/**