提交 985fde73 编写于 作者: D dapan1121

fix time issue

上级 2aec15bd
...@@ -184,9 +184,10 @@ int32_t parseTimezone(char* str, int64_t* tzOffset) { ...@@ -184,9 +184,10 @@ int32_t parseTimezone(char* str, int64_t* tzOffset) {
i++; i++;
while (str[i]) { int32_t j = i;
if ((str[i] >= '0' && str[i] <= '9') || str[i] == ':') { while (str[j]) {
++i; if ((str[j] >= '0' && str[j] <= '9') || str[j] == ':') {
++j;
continue; continue;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册