Handle leap-second inputs gracefully
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
2626d02494
commit
73fc2fd85b
1 changed files with 2 additions and 1 deletions
|
@ -256,8 +256,9 @@ impl DateTime {
|
||||||
&& (1..=31).contains(&day)
|
&& (1..=31).contains(&day)
|
||||||
&& hour <= 23
|
&& hour <= 23
|
||||||
&& minute <= 59
|
&& minute <= 59
|
||||||
&& second <= 58
|
&& second <= 60
|
||||||
{
|
{
|
||||||
|
let second = second.min(58); // exFAT can't store leap seconds
|
||||||
let max_day = match month {
|
let max_day = match month {
|
||||||
1 | 3 | 5 | 7 | 8 | 10 | 12 => 31,
|
1 | 3 | 5 | 7 | 8 | 10 | 12 => 31,
|
||||||
4 | 6 | 9 | 11 => 30,
|
4 | 6 | 9 | 11 => 30,
|
||||||
|
|
Loading…
Add table
Reference in a new issue