diff options
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index fb0bc0a567..8962de2c36 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -604,13 +604,13 @@ efh_finalize (GObject *object) { EMFormatHTML *efh = EM_FORMAT_HTML (object); - /* FIXME: check for leaked stuff */ - em_format_html_clear_pobject (efh); efh_gtkhtml_destroy (GTK_HTML (efh->priv->web_view), efh); g_hash_table_destroy (efh->priv->text_inline_parts); + g_mutex_free (efh->priv->lock); + /* Chain up to parent's finalize() method. */ G_OBJECT_CLASS (parent_class)->finalize (object); } |