Merge pull request #27754 from taosdata/fix/TD-31973-3.0

fix: possible coredump
This commit is contained in:
Hongze Cheng 2024-09-09 19:55:00 +08:00 committed by GitHub
commit 94fcd6dd46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ void metaReaderClear(SMetaReader *pReader) {
}
tDecoderClear(&pReader->coder);
tdbFree(pReader->pBuf);
pReader->pBuf = NULL;
}
int metaGetTableEntryByVersion(SMetaReader *pReader, int64_t version, tb_uid_t uid) {