Fix a memory leak in GtkCssStringValue

This commit is contained in:
Matthias Clasen
2012-09-13 21:29:15 -04:00
parent d9c2f40a5d
commit 98ca019c74

View File

@ -29,6 +29,7 @@ struct _GtkCssValue {
static void
gtk_css_value_string_free (GtkCssValue *value)
{
g_free (value->string);
g_slice_free (GtkCssValue, value);
}