From: Mike Blumenkrantz Date: Fri, 1 Feb 2013 09:57:10 +0000 (+0000) Subject: fix some hash magic fails in temp module X-Git-Tag: submit/efl/20131021.015651~1385 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abe45b31c1ca503970b87f657397dcc3bce35af6;p=platform%2Fupstream%2Fenlightenment.git fix some hash magic fails in temp module SVN revision: 83543 --- diff --git a/src/modules/temperature/e_mod_main.c b/src/modules/temperature/e_mod_main.c index 6ab678d..52c6998 100644 --- a/src/modules/temperature/e_mod_main.c +++ b/src/modules/temperature/e_mod_main.c @@ -445,7 +445,7 @@ e_modapi_init(E_Module *m) temperature_config = e_config_domain_load("module.temperature", conf_edd); if (!temperature_config) temperature_config = E_NEW(Config, 1); - else + else if (temperature_config->faces) eina_hash_foreach(temperature_config->faces, _temperature_face_id_max, &uuid); temperature_config->module = m; @@ -457,7 +457,8 @@ EAPI int e_modapi_shutdown(E_Module *m __UNUSED__) { e_gadcon_provider_unregister(&_gadcon_class); - eina_hash_foreach(temperature_config->faces, _temperature_face_shutdown, NULL); + if (temperature_config->faces) + eina_hash_foreach(temperature_config->faces, _temperature_face_shutdown, NULL); eina_hash_free(temperature_config->faces); free(temperature_config); temperature_config = NULL;