aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-widget.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-02 20:12:32 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-02 20:12:32 +0800
commitaf6301ba7e46881feaf21f696a4721bbec946ca6 (patch)
tree90aecccedd2ee971235a2a9d5a8d5538f7826126 /libempathy-gtk/empathy-contact-widget.c
parent34676cc2bbd026908720a6c0067eee58dbf20d5b (diff)
downloadgsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.tar
gsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.tar.gz
gsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.tar.bz2
gsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.tar.lz
gsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.tar.xz
gsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.tar.zst
gsoc2013-empathy-af6301ba7e46881feaf21f696a4721bbec946ca6.zip
contact_widget_location_update: fix string leak
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.c')
-rw-r--r--libempathy-gtk/empathy-contact-widget.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c
index e7a6b3a14..024128151 100644
--- a/libempathy-gtk/empathy-contact-widget.c
+++ b/libempathy-gtk/empathy-contact-widget.c
@@ -978,6 +978,7 @@ contact_widget_location_update (EmpathyContactWidget *information)
text = g_strconcat ( _("<b>Location</b>, "), user_date, NULL);
gtk_label_set_markup (GTK_LABEL (information->label_location), text);
+ g_free (user_date);
g_free (text);
}