From 253a060289be129e7efc8553ac560c66ce1ed800 Mon Sep 17 00:00:00 2001 From: liuyuxiu Date: Tue, 5 Sep 2023 10:40:12 +0800 Subject: [PATCH] qos bugfix Signed-off-by: liuyuxiu --- .../src/concurrent_task_service_proxy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/concurrent_task_client/src/concurrent_task_service_proxy.cpp b/frameworks/concurrent_task_client/src/concurrent_task_service_proxy.cpp index a794d7f..7b7782e 100644 --- a/frameworks/concurrent_task_client/src/concurrent_task_service_proxy.cpp +++ b/frameworks/concurrent_task_client/src/concurrent_task_service_proxy.cpp @@ -69,8 +69,8 @@ void ConcurrentTaskServiceProxy::QueryInterval(int queryItem, IntervalReply& que queryRs.paramA = -1; queryRs.paramB = -1; - if (!reply.ReadInt32(queryRs.rtgId) || !reply.WriteInt32(queryRs.tid) - || !reply.ReadInt32(queryRs.paramA) || !reply.WriteInt32(queryRs.paramB)) { + if (!reply.ReadInt32(queryRs.rtgId) || !reply.ReadInt32(queryRs.tid) + || !reply.ReadInt32(queryRs.paramA) || !reply.ReadInt32(queryRs.paramB)) { CONCUR_LOGE("Read info failed in QueryInterval Proxy"); return; } -- Gitee