jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=f678122aedc734c7dc4411affdaca808ed403296

commit f678122aedc734c7dc4411affdaca808ed403296
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Mon Nov 4 12:21:49 2013 +0900

    elm/quicklaunch: Increment _elm_init_count in ql_init
    
    Apps call elm_shutdown before exiting. But when using
    Quiklaunch, elm_init has never been called, so the
    init count is still 0.
    
    This will be especially useful since programs compiled
    with -fPIC and linked with -pie can be loaded by
    Quicklaunch.
---
 src/lib/elm_main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/elm_main.c b/src/lib/elm_main.c
index 39ef68a..ebf538b 100644
--- a/src/lib/elm_main.c
+++ b/src/lib/elm_main.c
@@ -664,6 +664,7 @@ elm_quicklaunch_init(int    argc,
                    EINA_LOG_STATE_STOP,
                    EINA_LOG_STATE_INIT);
 
+   _elm_init_count++;
    return _elm_ql_init_count;
 }
 

-- 


Reply via email to