未验证 提交 99e0873a 编写于 作者: S slguan 提交者: GitHub

Merge pull request #1562 from taosdata/hotfix/rpcrealloc

return after free
...@@ -331,6 +331,7 @@ void *rpcReallocCont(void *ptr, int contLen) { ...@@ -331,6 +331,7 @@ void *rpcReallocCont(void *ptr, int contLen) {
char *start = ((char *)ptr) - sizeof(SRpcReqContext) - sizeof(SRpcHead); char *start = ((char *)ptr) - sizeof(SRpcReqContext) - sizeof(SRpcHead);
if (contLen == 0 ) { if (contLen == 0 ) {
free(start); free(start);
return NULL;
} }
int size = contLen + RPC_MSG_OVERHEAD; int size = contLen + RPC_MSG_OVERHEAD;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册