aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <gdesmott@gnome.org>2008-07-10 01:32:33 +0800
committerGuillaume Desmottes <gdesmott@gnome.org>2008-07-10 01:32:33 +0800
commite5ffafd8f1edb17071c427d1a15b990bc6d132e1 (patch)
treeb569ad5eeecb4923d2d57cbd21aabcb1ce9c3741 /libempathy
parent552a8d22918f81985af50d7c353d8216e7f70213 (diff)
downloadgsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.tar
gsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.tar.gz
gsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.tar.bz2
gsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.tar.lz
gsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.tar.xz
gsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.tar.zst
gsoc2013-empathy-e5ffafd8f1edb17071c427d1a15b990bc6d132e1.zip
Fix GArray leak in empathy_tp_contact_factory_get_from_handles (Guillaume Desmottes)
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-tp-contact-factory.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-contact-factory.c b/libempathy/empathy-tp-contact-factory.c
index fe68ed0a7..b8babc6fc 100644
--- a/libempathy/empathy-tp-contact-factory.c
+++ b/libempathy/empathy-tp-contact-factory.c
@@ -1051,6 +1051,8 @@ empathy_tp_contact_factory_get_from_handles (EmpathyTpContactFactory *tp_factory
tp_contact_factory_request_everything (tp_factory, new_handles);
}
+ g_array_free (new_handles, TRUE);
+
return contacts;
}