summaryrefslogtreecommitdiffstats
path: root/glib
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 /glib
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.
Diffstat (limited to 'glib')
-rw-r--r--glib/dbus-gobject.c1
1 files changed, 1 insertions, 0 deletions
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);
}
/**