jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=5cea60d1574ba689735c488bada4004b72f2d5e4

commit 5cea60d1574ba689735c488bada4004b72f2d5e4
Author: Jean-Philippe Andre <[email protected]>
Date:   Tue Sep 26 16:21:27 2017 +0900

    elm: Fix elm_shutdown
    
    ecore could not shut down properly in an elm_init()/elm_shutdown()
    cycle, with 7 remaining references, all because of a typo.
    
    This should help @cedric as well
---
 src/lib/elementary/elm_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_main.c b/src/lib/elementary/elm_main.c
index f433d57030..196f5b5bbc 100644
--- a/src/lib/elementary/elm_main.c
+++ b/src/lib/elementary/elm_main.c
@@ -883,7 +883,7 @@ elm_quicklaunch_shutdown(void)
    _elm_emotion_shutdown();
 
    ecore_file_shutdown();
-   eio_init();
+   eio_shutdown();
    ecore_shutdown();
    eet_shutdown();
 

-- 


Reply via email to