elementary/elm_diskselector : Just freeing data in eina_list is not

enough. I think diskselector needs refactoring about freeing lists.
I'll check more.


SVN revision: 64965
This commit is contained in:
WooHyun Jung 2011-11-09 01:35:44 +00:00
parent f5ef108671
commit 281e9ce8d9
1 changed files with 2 additions and 2 deletions

View File

@ -678,14 +678,14 @@ _round_items_del(Widget_Data *wd)
EINA_LIST_FOREACH(wd->under_items, l, it)
{
_round_item_del(wd, it);
it = NULL;
}
wd->under_items = eina_list_free(wd->under_items);
EINA_LIST_FOREACH(wd->over_items, l, it)
{
_round_item_del(wd, it);
it = NULL;
}
wd->over_items = eina_list_free(wd->over_items);
}
static void