Merge pull request #1979 from taosdata/hotfix/rpcFreeMsg

free message is not in right way
This commit is contained in:
Shengliang Guan 2020-05-21 13:15:25 +08:00 committed by GitHub
commit 0d8027a0c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -869,7 +869,7 @@ static void *rpcProcessMsgFromPeer(SRecvInfo *pRecv) {
if (pRecv->ip==0 && pConn) {
rpcProcessBrokenLink(pConn);
tfree(pRecv->msg);
rpcFreeMsg(pRecv->msg);
return NULL;
}