From 73fc2fd85bf58dce3ef1c4015f64e6afb0fd6eb3 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Tue, 28 May 2024 17:58:04 -0700 Subject: [PATCH] Handle leap-second inputs gracefully Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> --- src/types.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index e95e3293..5376f238 100644 --- a/src/types.rs +++ b/src/types.rs @@ -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,