Fix a memory leak (#515039, Christian Persch)

2008-02-12  Matthias Clasen  <mclasen@redhat.com>

        * tests/prop-editor.c: Fix a memory leak (#515039, Christian Persch)



svn path=/trunk/; revision=19526
This commit is contained in:
Matthias Clasen 2008-02-12 15:38:47 +00:00 committed by Matthias Clasen
parent 9cf48640d9
commit 9499a65646
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-02-12 Matthias Clasen <mclasen@redhat.com>
* tests/prop-editor.c: Fix a memory leak (#515039, Christian Persch)
2008-02-12 Matthias Clasen <mclasen@redhat.com>
* tests/testmerge.c: Fix a memory leak (#515038, Christian Persch)

View File

@ -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);