ci break
This commit is contained in:
parent
dbde1a4491
commit
084719e34e
|
@ -2622,6 +2622,9 @@ static FORCE_INLINE void tdDestroySVCreateTbReq(SVCreateTbReq* req) {
|
|||
} else if (req->type == TSDB_NORMAL_TABLE) {
|
||||
taosMemoryFreeClear(req->ntb.schemaRow.pSchema);
|
||||
}
|
||||
if(pReq->sql != NULL){
|
||||
taosMemoryFree(pReq->sql);
|
||||
}
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
|
|
|
@ -50,7 +50,9 @@
|
|||
|
||||
#define FREESQL() \
|
||||
do { \
|
||||
taosMemoryFree(pReq->sql); \
|
||||
if(pReq->sql != NULL){ \
|
||||
taosMemoryFree(pReq->sql); \
|
||||
} \
|
||||
pReq->sql = NULL; \
|
||||
} while (0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue