summaryrefslogtreecommitdiff
path: root/src/lib/efreet
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2016-07-04 20:07:30 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2016-07-04 21:30:34 +0900
commit9527240d7422ff828f29c54df2211dd9374c2867 (patch)
tree7d3eb05f406b2750f448fea5dfe433441b66bc52 /src/lib/efreet
parent49f19a1cb207e148a5d4057f848fbd58edcbccd9 (diff)
downloadefl-9527240d7422ff828f29c54df2211dd9374c2867.tar.gz
efl - fix lots of little init/shutdown pairs that are wrong
i've fixed almost all the eina init/shutdown pairs to do the right thing now... except one (ecore_shutdown) with comment inline where eo_shutdown is not called. if this is called we are in crash land. this needs further inspection.
Diffstat (limited to 'src/lib/efreet')
-rw-r--r--src/lib/efreet/efreet_cache.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/efreet/efreet_cache.c b/src/lib/efreet/efreet_cache.c
index 88fda2e6a3..4211ca748f 100644
--- a/src/lib/efreet/efreet_cache.c
+++ b/src/lib/efreet/efreet_cache.c
@@ -360,6 +360,9 @@ efreet_cache_shutdown(void)
if (hnd_add) ecore_event_handler_del(hnd_add);
if (hnd_del) ecore_event_handler_del(hnd_del);
if (hnd_data) ecore_event_handler_del(hnd_data);
+
+ ecore_ipc_shutdown();
+
ipc = NULL;
pfx = NULL;
hnd_add = NULL;