ffs this free macro needs to get fixed to not fail here

SVN revision: 83555
This commit is contained in:
Mike Blumenkrantz 2013-02-01 11:56:36 +00:00
parent ceda4b3012
commit f97f3cdb2d
1 changed files with 3 additions and 1 deletions

View File

@ -351,6 +351,7 @@ static EDBus_Message *
_e_msgbus_profile_list_cb(const EDBus_Service_Interface *iface __UNUSED__,
const EDBus_Message *msg)
{
Eina_List *l;
char *name;
EDBus_Message *reply;
EDBus_Message_Iter *array, *main_iter;
@ -364,7 +365,8 @@ _e_msgbus_profile_list_cb(const EDBus_Service_Interface *iface __UNUSED__,
edbus_message_iter_arguments_append(main_iter, "as", &array);
EINA_SAFETY_ON_FALSE_RETURN_VAL(array, reply);
EINA_LIST_FREE(e_config_profile_list(), name)
l = e_config_profile_list();
EINA_LIST_FREE(l, name)
{
edbus_message_iter_basic_append(array, 's', name);
free(name);