bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=cf643b627cb467eeb725477908eef928573d6635
commit cf643b627cb467eeb725477908eef928573d6635 Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Mon Oct 24 21:13:39 2016 +0200 eina: fix shutdown in eina_file we are using eina_hash, eina_hash is using eina_rbtree, so we should ensure that rbtree is shutted down AFTER file is shutted down. fix T4753 --- src/lib/eina/eina_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eina/eina_main.c b/src/lib/eina/eina_main.c index 7238002..118b340 100644 --- a/src/lib/eina/eina_main.c +++ b/src/lib/eina/eina_main.c @@ -145,7 +145,6 @@ EAPI Eina_Inlist *_eina_tracking = NULL; S(ustrbuf); S(quadtree); S(simple_xml); - S(file); S(prefix); S(value); S(tmpstr); @@ -154,6 +153,7 @@ EAPI Eina_Inlist *_eina_tracking = NULL; S(cpu); S(thread_queue); S(rbtree); + S(file); S(safepointer); S(promise); /* no model for now @@ -194,7 +194,6 @@ static const struct eina_desc_setup _eina_desc_setup[] = { S(ustrbuf), S(quadtree), S(simple_xml), - S(file), S(prefix), S(value), S(tmpstr), @@ -203,6 +202,7 @@ static const struct eina_desc_setup _eina_desc_setup[] = { S(cpu), S(thread_queue), S(rbtree), + S(file), S(safepointer), S(promise) /* no model for now --