Fix a memory leak in GtkImage

https://bugzilla.gnome.org/show_bug.cgi?id=678175
This commit is contained in:
Dan Vrátil 2012-06-20 08:26:14 +02:00
parent d86f76c9f9
commit 4243c3a1e2

View File

@ -365,6 +365,8 @@ gtk_image_finalize (GObject *object)
g_clear_object (&image->priv->icon_helper);
g_free (image->priv->filename);
G_OBJECT_CLASS (gtk_image_parent_class)->finalize (object);
};