From 9ff3ad349fea0714d043324edb696865be12bcf6 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Tue, 19 Mar 2019 13:09:28 +0900 Subject: [PATCH] Fix calling aul_launch_init() - Calls the function with user data Change-Id: I209e56dd9f6c803bcd4a99726c643bd0aa56275d Signed-off-by: Hwankyu Jhun --- src/base/appcore_base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4