summaryrefslogtreecommitdiff
authorRoss Burton <ross@openedhand.com>2006-06-14 16:49:37 (GMT)
committer Ross Burton <ross@openedhand.com>2006-06-14 16:49:37 (GMT)
commit877c5d2d41550a3991fad8cb27e18755f1b693c4 (patch) (side-by-side diff)
treed0da67fea726885a008be2e24467ea220517cdfe
parentaa90c92e8996a047d9fe34e0509114c87ed8d05c (diff)
downloaddbus-qt3-master.zip
dbus-qt3-master.tar.gz
2006-06-14 Ross Burton <ross@openedhand.com>HEADmaster
* glib/dbus-gobject.c: Free a leaking GArray (surely not!) in dbus_g_method_return.
Diffstat (more/less context) (ignore whitespace changes)
-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 9840232..e4773d5 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 3e30dc2..1427a34 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);
}
/**