From d1b5d177766655656b4c4869e1bdf3516e70bc2a Mon Sep 17 00:00:00 2001 From: Fabrice Bellet Date: Thu, 15 Dec 2016 11:36:05 +0100 Subject: [PATCH] call-channel: fix a memory leak --- telepathy-glib/call-channel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/telepathy-glib/call-channel.c b/telepathy-glib/call-channel.c index 8ed7632..2a1fa20 100644 --- a/telepathy-glib/call-channel.c +++ b/telepathy-glib/call-channel.c @@ -525,6 +525,8 @@ update_call_members (TpCallChannel *self, _tp_channel_contacts_queue_prepare_async ((TpChannel *) self, contacts, update_call_members_prepared_cb, data); + + g_ptr_array_unref (contacts); } static void -- 2.7.4