remove redundant check

SVN revision: 55104
This commit is contained in:
Mike Blumenkrantz 2010-12-01 03:02:03 +00:00
parent 627b5343b8
commit 98b7017026
1 changed files with 3 additions and 6 deletions

View File

@ -1381,12 +1381,9 @@ _ecore_main_fd_handlers_buf_call(void)
ret |= fdh->func(fdh->data, fdh);
if (!fdh->read_active)
{
if (!fdh->read_active)
{
fdh->read_active = EINA_TRUE;
if ((!fdh->write_active) && (!fdh->error_active))
fd_handlers_to_call = eina_list_append(fd_handlers_to_call, fdh);
}
fdh->read_active = EINA_TRUE;
if ((!fdh->write_active) && (!fdh->error_active))
fd_handlers_to_call = eina_list_append(fd_handlers_to_call, fdh);
}
}
fdh->references--;