Change-Id: If8f6aa09628ab42cc65a1e4b591d0993c45a0f62
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
free(output);
eina_list_free(g_eom->outputs);
+
+ g_eom->outputs = NULL;
}
return EINA_FALSE;
{
EINA_LIST_FREE(g_eom->handlers, h)
ecore_event_handler_del(h);
+
+ g_eom->handlers = NULL;
+ }
+
+ if (g_eom->outputs)
+ {
+ Eina_List *l;
+ E_EomOutputPtr output;
+
+ EINA_LIST_FOREACH(g_eom->outputs, l, output)
+ free(output);
+
+ eina_list_free(g_eom->outputs);
+
+ g_eom->outputs = NULL;
}
if (g_eom->dpy)