jpeg pushed a commit to branch efl-1.20. http://git.enlightenment.org/core/efl.git/commit/?id=ed29bbe56f1badfc45c2931b992115d938113fd0
commit ed29bbe56f1badfc45c2931b992115d938113fd0 Author: Jean-Philippe Andre <jp.an...@samsung.com> Date: Tue Sep 26 17:18:02 2017 +0900 ecore: Reset do_quit when ecore shuts down After ecore_shutdown the main loop is dead, so the flag do_quit can be safely reset to 0. This will fix issues with cycles of elm_init/shutdown. This fixes: CK_FORK=no tests/elementary/elm_suite elm_win This patch relies on a few of the previous patches which ensure that ecore is well shut down. @fix --- src/lib/ecore/ecore_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ecore/ecore_main.c b/src/lib/ecore/ecore_main.c index 8ca2c96293..88419cee32 100644 --- a/src/lib/ecore/ecore_main.c +++ b/src/lib/ecore/ecore_main.c @@ -1650,6 +1650,7 @@ _ecore_main_shutdown(void) fd_handlers_to_call_current = NULL; fd_handlers_to_delete = NULL; fd_handler_current = NULL; + do_quit = 0; #ifdef _WIN32 while (win32_handlers) --