From e241af89bcb2bc48ace0e19e5d767964306d459b Mon Sep 17 00:00:00 2001 From: Sungwook Park Date: Wed, 19 Aug 2020 11:27:06 +0900 Subject: [PATCH] Fix issue that detected by static analysis tool Change-Id: I68e7dc381de3b2815f3cc4754bbfeb9a2f7d8bd7 Signed-off-by: Sungwook Park --- server/gestured_dbus.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/gestured_dbus.c b/server/gestured_dbus.c index 539a202..7c49b3c 100644 --- a/server/gestured_dbus.c +++ b/server/gestured_dbus.c @@ -435,9 +435,6 @@ static void _gestured_client_dbus_method_call_handler(GDBusConnection *conn, con } #endif g_dbus_method_invocation_return_value(invocation, reply_body); - } else if (ret == GESTURED_ERROR_SERVICE_NOT_READY) { - // for no return because will send the result with async - LOGD("method call pass because async function"); } else { LOGE("method_call failed, method_name : %s", method_name); g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, ret, "gesture error"); -- 2.34.1