From 4bd61a3a865928898895c76f40e3e89a65aac3b9 Mon Sep 17 00:00:00 2001 From: "sooyeon.kim" Date: Fri, 14 Jul 2017 19:52:13 +0900 Subject: [PATCH] Fix return value Change-Id: If0d88b6ab8f88d76cff080c05aa63ae04c139e54 Signed-off-by: sooyeon.kim --- server/ttsd_data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/ttsd_data.cpp b/server/ttsd_data.cpp index 4d69c50..fa8226f 100644 --- a/server/ttsd_data.cpp +++ b/server/ttsd_data.cpp @@ -646,7 +646,7 @@ bool ttsd_data_is_uttid_valid(int uid, int uttid) index = ttsd_data_is_client(uid); if (index < 0) { SECURE_SLOG(LOG_ERROR, tts_tag(), "[DATA ERROR] uid is not valid (%d)", uid); - return TTSD_ERROR_INVALID_PARAMETER; + return false; } if (uttid < g_app_list[index].utt_id_stopped) -- 2.7.4