check module name existence before reading from it

CID 1295427
This commit is contained in:
Mike Blumenkrantz 2015-04-23 08:23:13 -04:00
parent 2894bae445
commit 0c0d481e4e
1 changed files with 1 additions and 2 deletions

View File

@ -238,7 +238,7 @@ e_module_all_load(void)
EINA_LIST_FOREACH_SAFE(e_config->modules, l, ll, em)
{
if (!em) continue;
if ((!em) || (!em->name)) continue;
if ((!e_util_strcmp(em->name, "comp")) || (!e_util_strcmp(em->name, "conf_comp")) ||
(!strncmp(em->name, "wl_", 3)) //block wl_* modules from being saved
@ -261,7 +261,6 @@ e_module_all_load(void)
{
E_Module *m;
if (!em->name) continue;
if (eina_hash_find(_e_modules_hash, em->name)) continue;
e_util_env_set("E_MODULE_LOAD", em->name);