From: Hwankyu Jhun Date: Wed, 26 Jul 2017 01:53:23 +0000 (+0900) Subject: Fix appcore-ui finalization X-Git-Tag: accepted/tizen/unified/20170727.190638~1 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fappfw%2Fapp-core.git;a=commitdiff_plain;h=4d2f049a1d46b8024ae8933446673b3945edcaf0 Fix appcore-ui finalization 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 --- diff --git a/src/ui_base/appcore_ui_base.c b/src/ui_base/appcore_ui_base.c index 3b55df6..51e3204 100644 --- a/src/ui_base/appcore_ui_base.c +++ b/src/ui_base/appcore_ui_base.c @@ -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(); }