Efl.Observable: Free an iterator after use in observers_update()

Summary:
- In _efl_observable_observers_update() iterator is allocated but not freed.
- This frees the iterator.

@fix

Reviewers: conr2d, jpeg

Reviewed By: jpeg

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4994
This commit is contained in:
Sungtaek Hong 2017-06-30 13:29:44 +09:00 committed by Jeeyong Um
parent 0141417d5d
commit 1ae77d0925
1 changed files with 2 additions and 0 deletions

View File

@ -180,6 +180,8 @@ _efl_observable_observers_update(Eo *obj, Efl_Observable_Data *pd EINA_UNUSED, c
{
efl_observer_update(o, obj, key, data);
}
eina_iterator_free(it);
}
typedef struct