A bit of theme work, some random widget fixes here and there, and fix a lot of memory problems with burn_data.

This commit is contained in:
Jaime Thomas
2009-02-26 03:30:21 +00:00
parent 493d2817bc
commit 4a389c96a0
10 changed files with 104 additions and 69 deletions

View File

@@ -87,7 +87,11 @@ void
ecdb_burn_project_destroy(Ecdb_Burn_Project *proj)
{
EINA_ERROR_PINFO("burn\n");
if (proj->files) ecdb_source_destroy(proj->files);
if (proj->files)
{
ecdb_source_destroy(proj->files);
proj->files = NULL;
}
ecdb_project_destroy(ECDB_PROJECT(proj));
}