* Make sure private data is not NULL in elm_interface_scrollable.
* Correctly handle failure case in _x11_notify_handler_image.
+ * Fix missuse of EINA_INLIST_FOREACH in elm_transit.c.
* Fix focus problem in multibuttonentry. Entry can get focus only when multibuttonentry is focused.
* Make sure private data is not NULL in elm_interface_scrollable.
* Correctly handle failure case in _x11_notify_handler_image.
+ * Don't manipulate dead memory in Eina_Inlist in elm_transit.c.
Removals:
_transit_remove_dead_effects(Elm_Transit *transit)
{
Elm_Transit_Effect_Module *effect_module;
+ Eina_Inlist *ll;
- EINA_INLIST_FOREACH(transit->effect_list, effect_module)
+ EINA_INLIST_FOREACH_SAFE(transit->effect_list, ll, effect_module)
{
if (effect_module->deleted)
{