Revert "Eo: Fix rare crash after call_resolve"

I'm reverting this because according to jpeg it was possibly fixed in
5284b62e93.
I reverted this patch after his fix and followed his reproduction cases
and it seems that his second patch does indeed fix this issue so this
patch is no longer needed.

This reverts commit 0862b9d083.
This commit is contained in:
Tom Hacohen 2016-04-06 11:17:05 +01:00
parent c6159e042b
commit c9347b1ca2
1 changed files with 4 additions and 7 deletions

View File

@ -347,15 +347,12 @@ _eo_call_resolve(Eo *eo_id, const char *func_name, Eo_Op_Call_Data *call, Eo_Cal
if ((const void *)inputklass == cache->index[i].klass)
{
func = (const op_type_funcs *)cache->entry[i].func;
if (EINA_LIKELY(func->func && func->src))
call->func = func->func;
if (is_obj)
{
call->func = func->func;
if (is_obj)
{
call->data = (char *) obj + cache->off[i].off;
}
return EINA_TRUE;
call->data = (char *) obj + cache->off[i].off;
}
return EINA_TRUE;
}
}
#endif