Handle leap-second inputs gracefully

Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
Chris Hennick 2024-05-28 17:58:04 -07:00 committed by GitHub
parent 2626d02494
commit 73fc2fd85b
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -256,8 +256,9 @@ impl DateTime {
&& (1..=31).contains(&day)
&& hour <= 23
&& minute <= 59
&& second <= 58
&& second <= 60
{
let second = second.min(58); // exFAT can't store leap seconds
let max_day = match month {
1 | 3 | 5 | 7 | 8 | 10 | 12 => 31,
4 | 6 | 9 | 11 => 30,