From 20003818b526af9a729022c798b187b935e1608e Mon Sep 17 00:00:00 2001 From: Jeff Tao Date: Thu, 20 Feb 2020 08:21:09 +0800 Subject: [PATCH] fix bugs --- src/rpc/src/rpcMain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/src/rpcMain.c b/src/rpc/src/rpcMain.c index 4bfb30c039..6a1ec786ff 100755 --- a/src/rpc/src/rpcMain.c +++ b/src/rpc/src/rpcMain.c @@ -769,7 +769,7 @@ static void rpcProcessIncomingMsg(SRpcConn *pConn, SRpcHead *pHead) { rpcFreeOutMsg(rpcHeadFromCont(pContext->pCont)); // free the request msg if ( pRpc->ufp && (pContext->ipSet.index != pContext->oldIndex || pContext->redirect) ) (*pRpc->ufp)(pContext->ahandle, pContext->ipSet); // notify the update of ipSet - (*pRpc->cfp)(pHead->msgType, pCont, contLen, pContext->ahandle, pContext->ipSet.index); + (*pRpc->cfp)(pHead->msgType, pCont, contLen, pContext->ahandle, code); } } } -- GitLab