提交 b2f306e0 编写于 作者: dengyihao's avatar dengyihao

avoid invalid free

上级 1f978688
...@@ -178,7 +178,7 @@ static int32_t dmInitLog() { ...@@ -178,7 +178,7 @@ static int32_t dmInitLog() {
} }
static void taosCleanupArgs() { static void taosCleanupArgs() {
if (global.envCmd != NULL) taosMemoryFree(global.envCmd); if (global.envCmd != NULL) taosMemoryFreeClear(global.envCmd);
} }
int main(int argc, char const *argv[]) { int main(int argc, char const *argv[]) {
...@@ -271,7 +271,6 @@ int mainWindows(int argc, char **argv) { ...@@ -271,7 +271,6 @@ int mainWindows(int argc, char **argv) {
taosCleanupCfg(); taosCleanupCfg();
taosCloseLog(); taosCloseLog();
taosCleanupArgs();
taosConvDestroy(); taosConvDestroy();
return -1; return -1;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册