aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-11-18 21:18:05 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-11-18 22:35:17 +0800
commitb0bf4030adcc7b73eab4fffea81978213ebb7799 (patch)
treef0d404607c91afa5b348925658c72b23066580d8 /libempathy-gtk
parent03b6c0ae75f7d60be6e29451353fea87da6069f6 (diff)
downloadgsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.tar
gsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.tar.gz
gsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.tar.bz2
gsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.tar.lz
gsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.tar.xz
gsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.tar.zst
gsoc2013-empathy-b0bf4030adcc7b73eab4fffea81978213ebb7799.zip
individual_store_name_sort_func: don't leak names
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-individual-store.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c
index 77f3016ec..d6dc53abd 100644
--- a/libempathy-gtk/empathy-individual-store.c
+++ b/libempathy-gtk/empathy-individual-store.c
@@ -1470,6 +1470,8 @@ individual_store_name_sort_func (GtkTreeModel *model,
tp_clear_object (&individual_a);
tp_clear_object (&individual_b);
+ g_free (name_a);
+ g_free (name_b);
return ret_val;
}