From: Hwankyu Jhun Date: Tue, 19 Mar 2019 04:09:28 +0000 (+0900) Subject: Fix calling aul_launch_init() X-Git-Tag: accepted/tizen/unified/20190320.082250~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F201704%2F1;p=platform%2Fcore%2Fappfw%2Fapp-core.git Fix calling aul_launch_init() - Calls the function with user data Change-Id: I209e56dd9f6c803bcd4a99726c643bd0aa56275d Signed-off-by: Hwankyu Jhun --- diff --git a/src/base/appcore_base.c b/src/base/appcore_base.c index e276926..4bfcabd 100644 --- a/src/base/appcore_base.c +++ b/src/base/appcore_base.c @@ -1243,7 +1243,7 @@ EXPORT_API int appcore_base_on_create(void) { int r; - r = aul_launch_init(__context.ops.receive, NULL); + r = aul_launch_init(__context.ops.receive, __context.data); if (r < 0) { _ERR("Aul init failed: %d", r); return -1;