Fix double free.

This commit is contained in:
xiao-77 2025-01-08 14:55:37 +08:00
parent 3068226c3c
commit 430e62aab6
1 changed files with 0 additions and 1 deletions

View File

@ -799,7 +799,6 @@ static void cfgObjArrayCleanUp(SArray *array) {
for (int32_t i = 0; i < sz; ++i) {
SConfigObj *obj = taosArrayGet(array, i);
tFreeSConfigObj(obj);
taosMemoryFree(obj);
}
taosArrayDestroy(array);
}