Fix some mem leaks.

SVN revision: 25341
This commit is contained in:
Christopher Michael 2006-09-02 10:49:23 +00:00
parent 9b51668248
commit d21cca31ec
2 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,8 @@ _fill_data (Config_Item * ci, E_Config_Dialog_Data * cfdata)
}
i++;
}
E_FREE(tmp);
}
static void *

View File

@ -343,6 +343,9 @@ e_modapi_shutdown (E_Module * m)
evas_list_remove_list (net_config->items, net_config->items);
if (ci->id)
evas_stringshare_del (ci->id);
if (ci->device)
evas_stringshare_del (ci->device);
free (ci);
ci = NULL;
}