fix(query): remove invalid free.

This commit is contained in:
Haojun Liao 2022-11-16 15:47:24 +08:00
parent 42f8abcc0e
commit a36c24eb1c
1 changed files with 0 additions and 2 deletions

View File

@ -151,8 +151,6 @@ void metaCacheClose(SMeta* pMeta) {
taosHashCleanup(pMeta->pCache->sTagFilterResCache.pTableEntry); taosHashCleanup(pMeta->pCache->sTagFilterResCache.pTableEntry);
taosLRUCacheCleanup(pMeta->pCache->sTagFilterResCache.pUidResCache); taosLRUCacheCleanup(pMeta->pCache->sTagFilterResCache.pUidResCache);
taosMemoryFree(pMeta->pCache->sTagFilterResCache.keyBuf);
taosMemoryFree(pMeta->pCache); taosMemoryFree(pMeta->pCache);
pMeta->pCache = NULL; pMeta->pCache = NULL;
} }