Rid some useless eina_list_free calls, proper ecdb_source usage in filelist and burn data gui, and update to new EWL API.

This commit is contained in:
Jaime Thomas
2009-03-18 01:26:39 +00:00
parent 783efd37ff
commit c1b7f75774
8 changed files with 64 additions and 24 deletions

View File

@ -89,9 +89,8 @@ void
ecdb_drive_info_list_free(Eina_List *list)
{
Ecdb_Drive_Info *info;
Eina_List *l;
EINA_LIST_FOREACH(list, l, info)
EINA_LIST_FREE(list, info)
{
FREE(info->read_speeds);
FREE(info->write_speeds);
@ -102,8 +101,6 @@ ecdb_drive_info_list_free(Eina_List *list)
eina_stringshare_del(info->profile_name);
FREE(info);
}
list = eina_list_free(list);
}
void