[add init]

This commit is contained in:
Hui Li 2020-06-19 18:31:11 +08:00
parent c2779c2181
commit 78b1f5d632
1 changed files with 2 additions and 2 deletions

View File

@ -572,7 +572,7 @@ int taosDumpOut(SDumpArguments *arguments) {
fclose(fp);
taos_close(taos);
taos_free_result(result);
free(temp);
tfree(temp);
taosFreeDbInfos();
return 0;
@ -580,7 +580,7 @@ _exit_failure:
fclose(fp);
taos_close(taos);
taos_free_result(result);
free(temp);
tfree(temp);
taosFreeDbInfos();
return -1;
}