If the appid is nullptr in the __check_request() function, the function
should return 0.
Change-Id: Ie8e5422172b11cdf55348f6408ef4f97c1179c0d
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
return 0;
if (req->kb == NULL)
- return -1;
+ return 0;
if (__can_be_implicit_launch(req->cmd))
_app_control_resolve(req->t_uid, req->kb);
appid = bundle_get_val(req->kb, AUL_K_APPID);
if (appid == NULL)
- return -1;
+ return 0;
app_status = __get_app_status(req, appid);
if (app_status == NULL)