tasn pushed a commit to branch efl-1.13. http://git.enlightenment.org/core/efl.git/commit/?id=20edf125951a1d41b86b0da4c51eaaf09257ab80
commit 20edf125951a1d41b86b0da4c51eaaf09257ab80 Author: Sohyun Kim <anna1014....@samsung.com> Date: Fri Apr 17 16:10:20 2015 +0900 Evas textblock: remove freed item from the line list @fix --- src/lib/evas/canvas/evas_object_textblock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c index e9db7bb..46c53db 100644 --- a/src/lib/evas/canvas/evas_object_textblock.c +++ b/src/lib/evas/canvas/evas_object_textblock.c @@ -842,7 +842,7 @@ _item_free(const Evas_Object *eo_obj, Evas_Object_Textblock_Line *ln, Evas_Objec if (ln) { ln->items = (Evas_Object_Textblock_Item *) eina_inlist_remove( - EINA_INLIST_GET(ln->items), EINA_INLIST_GET(ln->items)); + EINA_INLIST_GET(ln->items), EINA_INLIST_GET(it)); } free(it); } --