cache/schema: fix schema double free

This commit is contained in:
Minglei Jin 2023-05-18 13:51:07 +08:00
parent 0f8b7c87f7
commit 3b316051bf
1 changed files with 1 additions and 1 deletions

View File

@ -982,7 +982,7 @@ int32_t tsdbCacheDel(STsdb *pTsdb, tb_uid_t suid, tb_uid_t uid, TSKEY sKey, TSKE
taosThreadMutexUnlock(&pTsdb->rCache.rMutex);
_exit:
taosMemoryFree(pTSchema);
// taosMemoryFree(pTSchema);
return code;
}