From 69e1503c6da9985b3c0f90e0448a07f92cb5474d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 24 Jun 2012 15:27:44 -0400 Subject: [PATCH] st-widget: Free the inline style https://bugzilla.gnome.org/show_bug.cgi?id=678737 --- src/st/st-widget.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/st/st-widget.c b/src/st/st-widget.c index 4476347a5..f1962886d 100644 --- a/src/st/st-widget.c +++ b/src/st/st-widget.c @@ -317,6 +317,7 @@ st_widget_finalize (GObject *gobject) g_free (priv->pseudo_class); g_object_unref (priv->local_state_set); g_free (priv->accessible_name); + g_free (priv->inline_style); G_OBJECT_CLASS (st_widget_parent_class)->finalize (gobject); }