fix local variable

This commit is contained in:
Ganlin Zhao 2023-04-18 16:34:06 +08:00
parent d21628b2c9
commit e58bf86c33
1 changed files with 2 additions and 2 deletions

View File

@ -4235,8 +4235,8 @@ static int32_t doOpenReaderImpl(STsdbReader* pReader) {
} }
static void freeSchemaFunc(void* param) { static void freeSchemaFunc(void* param) {
void* p = *(void**)param; void **p = (void **)param;
taosMemoryFreeClear(p); taosMemoryFreeClear(*p);
} }
// ====================================== EXPOSED APIs ====================================== // ====================================== EXPOSED APIs ======================================