Eo callback call: Remove redundant refcounting.

We already get refcounting from eo_do, no need to have more refcounting here.
This commit is contained in:
Tom Hacohen 2015-10-15 12:18:34 +01:00
parent 0908422084
commit 5661f96c05
1 changed files with 0 additions and 2 deletions

View File

@ -673,7 +673,6 @@ _eo_base_event_callback_call(Eo *obj_id, Eo_Base_Data *pd,
ret = EINA_TRUE;
_eo_ref(obj);
pd->walking_list++;
for (cb = pd->callbacks; cb; cb = cb->next)
@ -723,7 +722,6 @@ _eo_base_event_callback_call(Eo *obj_id, Eo_Base_Data *pd,
end:
pd->walking_list--;
_eo_callbacks_clear(pd);
_eo_unref(obj);
return ret;
}