Never add checks on afterthought, or add them right.

SVN revision: 37830
This commit is contained in:
Chidambar Zinnoury 2008-11-27 19:15:52 +00:00
parent 103dc34e7f
commit a63c02a192
1 changed files with 6 additions and 3 deletions

View File

@ -855,9 +855,12 @@ _e_exebuf_delete(void)
}
l = eina_list_last(eaps);
if (l) exe_l = l->data;
l = l->prev;
if (l) exe_p = l->data;
if (l)
{
exe_l = l->data;
l = l->prev;
if (l) exe_p = l->data;
}
l = eina_list_last(list);
if ((!exe_l) || (strcmp(exe_l->file, l->data) &&