diff --git a/ChangeLog b/ChangeLog index df8984bef4..3156157cdc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-02-12 Matthias Clasen + + * tests/prop-editor.c: Fix a memory leak (#515039, Christian Persch) + 2008-02-12 Matthias Clasen * tests/testmerge.c: Fix a memory leak (#515038, Christian Persch) diff --git a/tests/prop-editor.c b/tests/prop-editor.c index 22f6ad2fd6..442b162e9b 100644 --- a/tests/prop-editor.c +++ b/tests/prop-editor.c @@ -919,8 +919,10 @@ properties_from_type (GObject *object, specs = g_object_class_list_properties (class, &n_specs); } - if (n_specs == 0) + if (n_specs == 0) { + g_free (specs); return NULL; + } table = gtk_table_new (n_specs, 2, FALSE); gtk_table_set_col_spacing (GTK_TABLE (table), 0, 10);