fix: code merge issue

This commit is contained in:
dapan1121 2024-11-21 10:30:16 +08:00
parent 164fa67db5
commit 2738d5dd9c
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ _end:
void clearBlockScanInfoBuf(SBlockInfoBuf* pBuf) {
if (pBuf == NULL) return;
if (pBuf->pData != NULL) {
taosArrayDestroyP(pBuf->pData, (FDelete)taosMemoryFree);
taosArrayDestroyP(pBuf->pData, NULL);
pBuf->pData = NULL;
}
}