fix:memory leak

This commit is contained in:
wangmm0220 2023-01-12 17:38:07 +08:00
parent 71df37a88b
commit 06f863fbad
1 changed files with 2 additions and 0 deletions

View File

@ -1448,6 +1448,7 @@ int taos_write_raw_block_with_fields(TAOS* taos, int rows, char* pData, const ch
end: end:
taosMemoryFreeClear(pTableMeta); taosMemoryFreeClear(pTableMeta);
qDestroyQuery(pQuery); qDestroyQuery(pQuery);
destroyRequest(pRequest);
taosMemoryFree(subReq); taosMemoryFree(subReq);
return code; return code;
} }
@ -1639,6 +1640,7 @@ int taos_write_raw_block(TAOS* taos, int rows, char* pData, const char* tbname)
end: end:
taosMemoryFreeClear(pTableMeta); taosMemoryFreeClear(pTableMeta);
qDestroyQuery(pQuery); qDestroyQuery(pQuery);
destroyRequest(pRequest);
taosMemoryFree(subReq); taosMemoryFree(subReq);
return code; return code;
} }