From 88cacf15376f2c1ebe495de62ed7336585c3ef23 Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Fri, 2 Dec 2016 15:09:23 +0900 Subject: [PATCH] [WGID-146488] Fixed SVACE issue (UNREACHABLE_CODE) Change-Id: Ie6aa866d15a2bbc5a18359a2d83ddf1ad8a70621 Signed-off-by: Seonah Moon --- packaging/ug-setting-mobileap-efl.spec | 2 +- src/mh_popup.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/ug-setting-mobileap-efl.spec b/packaging/ug-setting-mobileap-efl.spec index b527e0b..973eaf0 100755 --- a/packaging/ug-setting-mobileap-efl.spec +++ b/packaging/ug-setting-mobileap-efl.spec @@ -3,7 +3,7 @@ Name: ug-setting-mobileap-efl Summary: Tethering UI Gadget Library -Version: 1.0.152 +Version: 1.0.153 Release: 1 Group: App/Network License: Flora-1.1 diff --git a/src/mh_popup.c b/src/mh_popup.c index 8f21c3f..7026576 100755 --- a/src/mh_popup.c +++ b/src/mh_popup.c @@ -41,7 +41,7 @@ static void __launch_network_app(void) int ret = APP_CONTROL_ERROR_NONE; app_control_h app_control; - app_control_create(&app_control); + ret = app_control_create(&app_control); if (ret != APP_CONTROL_ERROR_NONE) { ERR("app_control_create failed"); return; -- 2.7.4