When freeing the fileset entries, free the entry itself too.

svn path=/trunk/; revision=33865
This commit is contained in:
Jeff Morriss 2010-08-20 22:13:46 +00:00
parent 522c9b85b8
commit 674a4c9285
1 changed files with 1 additions and 0 deletions

View File

@ -368,6 +368,7 @@ static void fileset_entry_delete(gpointer data, gpointer user_data _U_)
entry->fullname = NULL;
g_free( (gpointer) entry->name);
entry->name = NULL;
g_free(entry);
}