author | Eric Skoglund <eric@pagefault.se> |
Tue, 24 May 2016 09:32:54 +0200 | |
changeset 341443 | fca24589e9666a482ba169a446f8f19eef66b841 |
parent 341442 | dd6fb8e96ae4b9b2c2150e0515919ca8985b672b |
child 341444 | 90a4cdcb559e200eee669ad9ae6f5840fb98bf62 |
push id | 1183 |
push user | raliiev@mozilla.com |
push date | Mon, 05 Sep 2016 20:01:49 +0000 |
treeherder | mozilla-release@3148731bed45 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | evilpies |
bugs | 730838 |
milestone | 49.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
js/src/jsdate.cpp | file | annotate | diff | comparison | revisions |
--- a/js/src/jsdate.cpp +++ b/js/src/jsdate.cpp @@ -870,17 +870,17 @@ ParseISOStyleDate(const CharT* s, size_t isLocalTime = true; } done: if (year > 275943 // ceil(1e8/365) + 1970 || (month == 0 || month > 12) || (day == 0 || day > size_t(DaysInMonth(year,month))) || hour > 24 - || ((hour == 24) && (min > 0 || sec > 0)) + || ((hour == 24) && (min > 0 || sec > 0 || frac > 0)) || min > 59 || sec > 59 || tzHour > 23 || tzMin > 59) { return false; }