aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-store.c
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:21:34 +0800
commit5594d66040047febc79e85fb99af61abcb3c8a39 (patch)
tree49269794818b64f99a45245ae4889e5fa49b4aa4 /libempathy-gtk/empathy-individual-store.c
parent220c1987a026a146dd8ae5121ac00e7fccd75339 (diff)
downloadgsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.tar
gsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.tar.gz
gsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.tar.bz2
gsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.tar.lz
gsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.tar.xz
gsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.tar.zst
gsoc2013-empathy-5594d66040047febc79e85fb99af61abcb3c8a39.zip
individual_store_name_sort_func: don't leak names
Diffstat (limited to 'libempathy-gtk/empathy-individual-store.c')
-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 ce2eacf82..dbea416a7 100644
--- a/libempathy-gtk/empathy-individual-store.c
+++ b/libempathy-gtk/empathy-individual-store.c
@@ -1513,6 +1513,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;
}