From 6721800e7bd7b55acddd496e22369cb7b780dce2 Mon Sep 17 00:00:00 2001 From: Srivardhan Hebbar Date: Fri, 6 Mar 2015 15:52:43 +0100 Subject: [PATCH] ecore_con: calling ecore_con_local_init/shutdown from ecore_con_init/shutdown. Summary: ecore_con_local doesn't currently require any initialization, but it might need that on some platform and not having the init make the source code non obvious. This is just a patch to improve future maintenability. Signed-off-by: Srivardhan Hebbar Reviewers: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2098 Signed-off-by: Cedric BAIL --- src/lib/ecore_con/ecore_con.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ecore_con/ecore_con.c b/src/lib/ecore_con/ecore_con.c index a440bcd56d..914faa8934 100644 --- a/src/lib/ecore_con/ecore_con.c +++ b/src/lib/ecore_con/ecore_con.c @@ -224,6 +224,7 @@ ecore_con_init(void) ecore_con_socks_init(); ecore_con_ssl_init(); ecore_con_info_init(); + ecore_con_local_init(); #ifdef HAVE_SYSTEMD sd_fd_max = sd_listen_fds(0); @@ -281,6 +282,7 @@ ecore_con_shutdown(void) ecore_con_socks_shutdown(); if (!_ecore_con_event_count) ecore_con_mempool_shutdown(); + ecore_con_local_shutdown(); ecore_con_info_shutdown(); ecore_con_ssl_shutdown(); eina_log_domain_unregister(_ecore_con_log_dom);