diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-07-02 20:12:32 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-07-02 20:12:32 +0800 |
commit | af6301ba7e46881feaf21f696a4721bbec946ca6 (patch) | |
tree | 90aecccedd2ee971235a2a9d5a8d5538f7826126 | |
parent | 34676cc2bbd026908720a6c0067eee58dbf20d5b (diff) | |
download | gsoc2013-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
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 1 |
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); } |