diff options
Diffstat (limited to 'xfa/fgas/localization')
-rw-r--r-- | xfa/fgas/localization/fgas_locale.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xfa/fgas/localization/fgas_locale.cpp b/xfa/fgas/localization/fgas_locale.cpp index 6eed202643..f0d1066397 100644 --- a/xfa/fgas/localization/fgas_locale.cpp +++ b/xfa/fgas/localization/fgas_locale.cpp @@ -3655,9 +3655,8 @@ FX_BOOL FX_TimeFromCanonical(const CFX_WideStringC& wsTime, } millisecond = millisecond * 10 + str[cc++] - '0'; } - if (cc < cc_start + 3 || millisecond >= 1000) { + if (cc < cc_start + 3) return FALSE; - } } if (cc < len) { FX_TIMEZONE tzDiff; |