eo: use EINA_SAFETY_ON_TRUE_GOTO to error message out in case of mistake.

This commit is contained in:
Cedric BAIL 2018-03-29 11:06:12 -07:00
parent ff4cf74dfa
commit d7da460dd2
1 changed files with 1 additions and 1 deletions

View File

@ -1984,7 +1984,7 @@ efl_future_cb_from_desc(Eo *o, const Efl_Future_Cb_Desc desc)
EINA_SAFETY_ON_NULL_GOTO(o, end);
pd = efl_data_scope_get(o, EFL_OBJECT_CLASS);
EINA_SAFETY_ON_NULL_GOTO(pd, end);
if (pd->invalidate) goto end;
EINA_SAFETY_ON_TRUE_GOTO(pd->invalidate, end);
pending = _efl_pending_future_new();
EINA_SAFETY_ON_NULL_GOTO(pending, end);
memcpy(&pending->desc, &desc, sizeof(Efl_Future_Cb_Desc));