From 0963950afbd040c571f473fd0decebe09b31a454 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 9 Feb 2015 18:20:45 +0900 Subject: [PATCH] elm list - fix access of deleted items in list when recursing @fix --- src/lib/elm_list.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elm_list.c b/src/lib/elm_list.c index 709e00e..986a454 100644 --- a/src/lib/elm_list.c +++ b/src/lib/elm_list.c @@ -837,6 +837,7 @@ _items_fix(Evas_Object *obj) EINA_LIST_FOREACH(sd->items, l, eo_it) { ELM_LIST_ITEM_DATA_GET(eo_it, it); + if (!it) continue; if (it->deleted) continue; if (it->icon) { @@ -866,6 +867,7 @@ _items_fix(Evas_Object *obj) EINA_LIST_FOREACH(sd->items, l, eo_it) { ELM_LIST_ITEM_DATA_GET(eo_it, it); + if (!it) continue; if (it->deleted) continue; -- 2.7.4