From d4e8a541dc85c2291db4c1569ab54063b839b829 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Sat, 27 Jul 2024 18:38:46 +0800 Subject: [PATCH] fix:[TD-31017]process return value in client --- source/client/src/clientMsgHandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/src/clientMsgHandler.c b/source/client/src/clientMsgHandler.c index e0657e2893..73924a4e8e 100644 --- a/source/client/src/clientMsgHandler.c +++ b/source/client/src/clientMsgHandler.c @@ -337,7 +337,7 @@ int32_t processUseDbRsp(void* param, SDataBuf* pMsg, int32_t code) { } else { (void)tsem_post(&pRequest->body.rspSem); } - return code; + return 0; } int32_t processCreateSTableRsp(void* param, SDataBuf* pMsg, int32_t code) {