fix potential bugs in msg queu processing

SVN revision: 14933
This commit is contained in:
Carsten Haitzler 2005-05-25 08:07:34 +00:00
parent cde252a7f6
commit 526a8099fa
1 changed files with 1 additions and 1 deletions

View File

@ -797,10 +797,10 @@ _edje_file_add(Edje *ed)
void
_edje_file_del(Edje *ed)
{
if (!((ed->file) && (ed->collection))) return;
_edje_message_del(ed);
_edje_block_violate(ed);
_edje_var_shutdown(ed);
if (!((ed->file) && (ed->collection))) return;
if ((ed->file) && (ed->collection))
{
Evas_List *l;