fix(query): memory leak with pPageIdList on sort1

This commit is contained in:
Alex Duan 2022-11-28 21:51:43 +08:00
parent 48f4d26acd
commit 0b3f21bef7
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ void tsortClearOrderdSource(SArray *pOrderedSource) {
taosArrayDestroy((*pSource)->pageIdList);
}
if ((*pSource)->param && !(*pSource)->onlyRef) {
taosMemoryFree((*pSource)->param);
taosMemoryFree((*pSource)->param);
}
taosMemoryFreeClear(*pSource);
}