fix: memory leak in dispatcher

This commit is contained in:
dapan1121 2024-09-07 17:19:20 +08:00
parent 9a3bc48326
commit cbafc37880
1 changed files with 1 additions and 0 deletions

View File

@ -204,6 +204,7 @@ static int32_t putDataBlock(SDataSinkHandle* pHandle, const SInputData* pInput,
_return:
taosMemoryFreeClear(pBuf->pData);
taosFreeQitem(pBuf);
return code;
}