From f26376e5879e9dc9e8c2192563b3ff8eb1e0ab9a Mon Sep 17 00:00:00 2001 From: cy7717 Date: Wed, 31 May 2023 17:51:43 +0800 Subject: [PATCH] mod Signed-off-by: cy7717 --- services/src/input_method_system_ability_stub.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/services/src/input_method_system_ability_stub.cpp b/services/src/input_method_system_ability_stub.cpp index eb4a32a4..28b2308d 100644 --- a/services/src/input_method_system_ability_stub.cpp +++ b/services/src/input_method_system_ability_stub.cpp @@ -136,10 +136,8 @@ int32_t InputMethodSystemAbilityStub::GetCurrentInputMethodOnRemote(MessageParce IMSA_HILOGE("property is nullptr"); return reply.WriteInt32(ErrorCode::ERROR_EX_NULL_POINTER) ? ErrorCode::NO_ERROR : ErrorCode::ERROR_EX_PARCELABLE; } - auto emptyReply = reply; if (!ITypesUtil::Marshal(reply, ErrorCode::NO_ERROR, *property)) { IMSA_HILOGE("Marshal failed"); - reply = emptyReply; return ErrorCode::ERROR_EX_PARCELABLE; } return ErrorCode::NO_ERROR; @@ -152,10 +150,8 @@ int32_t InputMethodSystemAbilityStub::GetCurrentInputMethodSubtypeOnRemote(Messa IMSA_HILOGE("property is nullptr"); return reply.WriteInt32(ErrorCode::ERROR_EX_NULL_POINTER) ? ErrorCode::NO_ERROR : ErrorCode::ERROR_EX_PARCELABLE; } - auto emptyReply = reply; if (!ITypesUtil::Marshal(reply, ErrorCode::NO_ERROR, *property)) { IMSA_HILOGE("Marshal failed"); - reply = emptyReply; return ErrorCode::ERROR_EX_PARCELABLE; } return ErrorCode::NO_ERROR; @@ -168,12 +164,10 @@ int32_t InputMethodSystemAbilityStub::ListInputMethodOnRemote(MessageParcel &dat IMSA_HILOGE("read status failed"); return ErrorCode::ERROR_EX_PARCELABLE; } - auto emptyReply = reply; std::vector properties = {}; auto ret = ListInputMethod(InputMethodStatus(status), properties); if (!ITypesUtil::Marshal(reply, ret, properties)) { IMSA_HILOGE("Marshal failed"); - reply = emptyReply; return ErrorCode::ERROR_EX_PARCELABLE; } return ErrorCode::NO_ERROR; @@ -186,12 +180,10 @@ int32_t InputMethodSystemAbilityStub::ListInputMethodSubtypeOnRemote(MessageParc IMSA_HILOGE("read bundleName failed"); return ErrorCode::ERROR_EX_PARCELABLE; } - auto emptyReply = reply; std::vector subProps = {}; auto ret = ListInputMethodSubtype(bundleName, subProps); if (!ITypesUtil::Marshal(reply, ret, subProps)) { IMSA_HILOGE("Marshal failed"); - reply = emptyReply; return ErrorCode::ERROR_EX_PARCELABLE; } return ErrorCode::NO_ERROR; @@ -199,12 +191,10 @@ int32_t InputMethodSystemAbilityStub::ListInputMethodSubtypeOnRemote(MessageParc int32_t InputMethodSystemAbilityStub::ListCurrentInputMethodSubtypeOnRemote(MessageParcel &data, MessageParcel &reply) { - auto emptyReply = reply; std::vector subProps = {}; auto ret = ListCurrentInputMethodSubtype(subProps); if (!ITypesUtil::Marshal(reply, ret, subProps)) { IMSA_HILOGE("Marshal failed"); - reply = emptyReply; return ErrorCode::ERROR_EX_PARCELABLE; } return ErrorCode::NO_ERROR;