Fix a recently-introduced memory leak.

This commit is contained in:
Josh Elsasser 2006-06-11 16:20:56 +00:00
parent 94f7caba34
commit 2d055ae6ce
1 changed files with 1 additions and 0 deletions

View File

@ -331,6 +331,7 @@ static void
freedata(gpointer gdata, GClosure *closure SHUTUP) {
struct prefdata *data = gdata;
g_list_free(data->prefwidgets);
g_object_unref(G_OBJECT(data->back));
g_free(data);
}