From dfe871064967b44fe2a674db27d1efddb41b5584 Mon Sep 17 00:00:00 2001 From: "sooyeon.kim" Date: Fri, 16 Jun 2017 15:50:09 +0900 Subject: [PATCH] Fix MIC error Change-Id: I10ac1a85f8f209a6bc4639a23752452f707c13ad Signed-off-by: sooyeon.kim --- engine-parser/src/stt-engine-parser.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engine-parser/src/stt-engine-parser.c b/engine-parser/src/stt-engine-parser.c index 8c4b201..c62ddac 100644 --- a/engine-parser/src/stt-engine-parser.c +++ b/engine-parser/src/stt-engine-parser.c @@ -518,11 +518,11 @@ int PKGMGR_MDPARSER_PLUGIN_INSTALL(const char *pkgid, const char *appid, GList * g_strfreev(query); if (!users) { - LOGE("Failed to get gum user list"); + LOGD("NO users"); g_object_unref(gus); gus = NULL; G_FREE(g_user_type) - return -1; + return 0; } /* Make new user list */ @@ -764,11 +764,11 @@ int PKGMGR_MDPARSER_PLUGIN_UNINSTALL(const char *pkgid, const char *appid, GList g_strfreev(query); if (!users) { - LOGE("Failed to get gum user list"); + LOGD("NO users"); g_object_unref(gus); gus = NULL; G_FREE(g_user_type) - return -1; + return 0; } /* Make new user list */ -- 2.7.4