diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2010-11-18 21:26:04 +0000 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2010-11-18 21:26:04 +0000 |
commit | 8018f75e890d28baa3e3f6517627df18a7f9ee75 (patch) | |
tree | 7ff650f68737a4bc1d7add69b6d2946f5707ca3c | |
parent | cbdd03baf72b34521ef2c29f9e11f8b30a84c30a (diff) |
Fix leak in tp-lowlevel.cfolks-0-2
Closes: bgo#635178
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | backends/telepathy/lib/tp-lowlevel.c | 2 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,10 @@ +Overview of changes from libfolks 0.2.1 to libfolks 0.2.2 +========================================================= + +Bugs fixed: +* Bug 635178 — Leak in + folks_tp_lowlevel_connection_open_contact_list_channel_async + Overview of changes from libfolks 0.2.0 to libfolks 0.2.1 ========================================================= diff --git a/backends/telepathy/lib/tp-lowlevel.c b/backends/telepathy/lib/tp-lowlevel.c index bac6d3cd..b12e54a8 100644 --- a/backends/telepathy/lib/tp-lowlevel.c +++ b/backends/telepathy/lib/tp-lowlevel.c @@ -93,6 +93,8 @@ folks_tp_lowlevel_connection_open_contact_list_channel_async ( folks_tp_lowlevel_connection_open_contact_list_channel_finish); tp_cli_connection_interface_requests_call_ensure_channel (conn, -1, request, connection_ensure_channel_cb, result, NULL, G_OBJECT (conn)); + + g_hash_table_unref (request); } /** |