evas module load - make coverity happy but not a bug

silence CID 1357364
This commit is contained in:
Carsten Haitzler 2016-07-08 18:59:21 +09:00
parent b1d9cf8d8d
commit 46b97aba78
1 changed files with 2 additions and 2 deletions

View File

@ -440,8 +440,8 @@ evas_module_find_type(Evas_Module_Type type, const char *name)
em = eina_hash_find(evas_modules[type], name);
if (em)
{
evas_module_load(em);
return em;
if (evas_module_load(em)) return em;
return NULL;
}
run_in_tree = !!getenv("EFL_RUN_IN_TREE");