chasing bugs still

SVN revision: 23082
This commit is contained in:
Carsten Haitzler 2006-06-02 07:29:53 +00:00
parent ff5f8cc24f
commit 393f3c7708
1 changed files with 6 additions and 1 deletions

View File

@ -514,8 +514,13 @@ ecore_con_server_del(Ecore_Con_Server *svr)
}
else
{
printf("FREE SVR %p\n", svr);
_ecore_con_server_free(svr);
if (ecore_list_goto(servers, svr)) ecore_list_remove(servers);
if (ecore_list_goto(servers, svr))
{
printf("REMOVE %p\n", svr);
ecore_list_remove(servers);
}
}
return data;
}