fix local variable
This commit is contained in:
parent
d21628b2c9
commit
e58bf86c33
|
@ -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 ======================================
|
||||||
|
|
Loading…
Reference in New Issue