diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-12 21:06:09 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-13 16:15:46 +0800 |
commit | e90a360038e2428eb6b7090746bd32542eacf203 (patch) | |
tree | 5e161a5c062f38fcc67ab5e09ad10f0afc4a7509 /libempathy-gtk | |
parent | 5845fcbe57199c9995130384f657148a7d818028 (diff) | |
download | gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.tar gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.tar.gz gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.tar.bz2 gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.tar.lz gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.tar.xz gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.tar.zst gsoc2013-empathy-e90a360038e2428eb6b7090746bd32542eacf203.zip |
theme-adium: fix priv->variant leak
https://bugzilla.gnome.org/show_bug.cgi?id=683864
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-theme-adium.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c index 64cbe0ec7..194273d92 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -1439,6 +1439,8 @@ theme_adium_finalize (GObject *object) g_object_unref (self->priv->gsettings_chat); g_object_unref (self->priv->gsettings_desktop); + g_free (self->priv->variant); + G_OBJECT_CLASS (empathy_theme_adium_parent_class)->finalize (object); } |