fix compile error
This commit is contained in:
parent
3a37e5d176
commit
d6ddc5a807
|
@ -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) {
|
||||||
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) {
|
||||||
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) {
|
||||||
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) {
|
||||||
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) {
|
||||||
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) {
|
||||||
free(params);
|
free(params);
|
||||||
free(is_null);
|
free(is_null);
|
||||||
free(no_null);
|
free(no_null);
|
||||||
|
free(tags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue