edje_edit: Closing the opened eet_file

Closing the file openned in the functions _edje_edit_smart_file_set.
It balances the reference count and avoids the message that the file
is still opened.

Patch by: Flavio Ceolin <flavio.ceolin@profusion.mobi>



SVN revision: 76149
This commit is contained in:
Flavio Ceolin 2012-09-04 21:43:32 +00:00 committed by Gustavo Sverzut Barbieri
parent 6237f9ec9d
commit 7457f675ff
1 changed files with 2 additions and 0 deletions

View File

@ -263,6 +263,8 @@ _edje_edit_smart_file_set(Evas_Object *obj, const char *file, const char *group,
eina_hash_add(eed->program_scripts, &ps->id, ps);
}
if (keys) free(keys);
eet_close(ef);
return EINA_TRUE;
}