Merge pull request #890 from taosdata/feature/fangstatic

Feature/fangstatic
This commit is contained in:
slguan 2019-12-11 18:17:09 +08:00 committed by GitHub
commit 77f2784f3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ char **strsplit(char *z, const char *delim, int32_t *num) {
if ((*num) >= size) {
size = (size << 1);
split = realloc(split, POINTER_BYTES * size);
assert(NULL != split);
}
}