Evas textblock: remove freed item from the line list

@fix
This commit is contained in:
Sohyun Kim 2015-04-17 16:10:20 +09:00
parent a871ac96a8
commit e48792a81e
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}