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

fix time issue

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