提交 d6ddc5a8 编写于 作者: D dapan1121

fix compile error

上级 3a37e5d1
...@@ -448,7 +448,7 @@ void verify_prepare2(TAOS* taos) { ...@@ -448,7 +448,7 @@ void verify_prepare2(TAOS* taos) {
double f8[10]; double f8[10];
char bin[10][40]; char bin[10][40];
char blob[10][80]; char blob[10][80];
} v = {0}; } v;
int32_t *t8_len = malloc(sizeof(int32_t) * 10); int32_t *t8_len = malloc(sizeof(int32_t) * 10);
int32_t *t16_len = malloc(sizeof(int32_t) * 10); int32_t *t16_len = malloc(sizeof(int32_t) * 10);
...@@ -688,7 +688,7 @@ void verify_prepare3(TAOS* taos) { ...@@ -688,7 +688,7 @@ void verify_prepare3(TAOS* taos) {
double f8[10]; double f8[10];
char bin[10][40]; char bin[10][40];
char blob[10][80]; char blob[10][80];
} v = {0}; } v;
int32_t *t8_len = malloc(sizeof(int32_t) * 10); int32_t *t8_len = malloc(sizeof(int32_t) * 10);
int32_t *t16_len = malloc(sizeof(int32_t) * 10); int32_t *t16_len = malloc(sizeof(int32_t) * 10);
......
...@@ -1046,6 +1046,7 @@ int stmt_funcb_autoctb1(TAOS_STMT *stmt) { ...@@ -1046,6 +1046,7 @@ int stmt_funcb_autoctb1(TAOS_STMT *stmt) {
free(params); free(params);
free(is_null); free(is_null);
free(no_null); free(no_null);
free(tags);
return 0; return 0;
} }
...@@ -1258,6 +1259,7 @@ int stmt_funcb_autoctb2(TAOS_STMT *stmt) { ...@@ -1258,6 +1259,7 @@ int stmt_funcb_autoctb2(TAOS_STMT *stmt) {
free(params); free(params);
free(is_null); free(is_null);
free(no_null); free(no_null);
free(tags);
return 0; return 0;
} }
...@@ -1446,6 +1448,7 @@ int stmt_funcb_autoctb3(TAOS_STMT *stmt) { ...@@ -1446,6 +1448,7 @@ int stmt_funcb_autoctb3(TAOS_STMT *stmt) {
free(params); free(params);
free(is_null); free(is_null);
free(no_null); free(no_null);
free(tags);
return 0; return 0;
} }
...@@ -1635,6 +1638,7 @@ int stmt_funcb_autoctb_e1(TAOS_STMT *stmt) { ...@@ -1635,6 +1638,7 @@ int stmt_funcb_autoctb_e1(TAOS_STMT *stmt) {
free(params); free(params);
free(is_null); free(is_null);
free(no_null); free(no_null);
free(tags);
return 0; return 0;
} }
...@@ -1849,6 +1853,7 @@ int stmt_funcb_autoctb_e2(TAOS_STMT *stmt) { ...@@ -1849,6 +1853,7 @@ int stmt_funcb_autoctb_e2(TAOS_STMT *stmt) {
free(params); free(params);
free(is_null); free(is_null);
free(no_null); free(no_null);
free(tags);
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册