diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-03-18 18:40:54 +0800 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-03-18 18:40:54 +0800 |
commit | 00f27e9c52f494cad1b36e0e106a129e884ac428 (patch) | |
tree | 1fa6a7fb7b2c407cf57737fa0d62e5a709382919 /libempathy/empathy-server-tls-handler.c | |
parent | 385b1a5c6c3f0fd9d7cd5d33843466ed9e1238cc (diff) | |
download | gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.tar gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.tar.gz gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.tar.bz2 gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.tar.lz gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.tar.xz gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.tar.zst gsoc2013-empathy-00f27e9c52f494cad1b36e0e106a129e884ac428.zip |
Free priv->hostname in EmpathyServerTlsHandler
https://bugzilla.gnome.org/show_bug.cgi?id=645115
Diffstat (limited to 'libempathy/empathy-server-tls-handler.c')
-rw-r--r-- | libempathy/empathy-server-tls-handler.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy/empathy-server-tls-handler.c b/libempathy/empathy-server-tls-handler.c index 6180fefea..6cf3290c5 100644 --- a/libempathy/empathy-server-tls-handler.c +++ b/libempathy/empathy-server-tls-handler.c @@ -162,6 +162,7 @@ empathy_server_tls_handler_finalize (GObject *object) tp_clear_object (&priv->channel); tp_clear_object (&priv->certificate); + g_free (priv->hostname); G_OBJECT_CLASS (empathy_server_tls_handler_parent_class)->finalize (object); } |