Fix appcore-ui finalization 54/140654/2
authorHwankyu Jhun <h.jhun@samsung.com>
Wed, 26 Jul 2017 01:53:23 +0000 (10:53 +0900)
committerHwanKyu Jhun <h.jhun@samsung.com>
Wed, 26 Jul 2017 02:00:03 +0000 (02:00 +0000)
Calling the position of the appcore_ui_plugin_fini() is changed.
If the platform developer redefines(override) the lifecycle functions by
using custom plugin, the function should be called after calling
the appcore_base_fini() function.

Change-Id: I1af43843724e7676581e3c4e76a032b4ed3e2fe4
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/ui_base/appcore_ui_base.c

index 3b55df6..51e3204 100644 (file)
@@ -829,8 +829,8 @@ EXPORT_API void appcore_ui_base_fini(void)
        free(__context.appid);
        __context.appid = NULL;
 
-       appcore_ui_plugin_fini();
        appcore_base_fini();
+       appcore_ui_plugin_fini();
        ecore_wl_shutdown();
 }