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

@ -1379,8 +1379,6 @@ _ecore_main_fd_handlers_buf_call(void)
if (fdh->buf_func(fdh->buf_data, fdh))
{
ret |= fdh->func(fdh->data, fdh);
if (!fdh->read_active)
{
if (!fdh->read_active)
{
fdh->read_active = EINA_TRUE;
@ -1388,7 +1386,6 @@ _ecore_main_fd_handlers_buf_call(void)
fd_handlers_to_call = eina_list_append(fd_handlers_to_call, fdh);
}
}
}
fdh->references--;
}
else