From a85e3eb809a78eb4a2187d6ef661b860c5581a8c Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Mon, 6 Jan 2020 22:27:46 +0100 Subject: [PATCH] Fix error checking tm_mon in time::Tm conversion Fixes #128 --- src/types.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 640e0c52..fcbfc06e 100644 --- a/src/types.rs +++ b/src/types.rs @@ -111,7 +111,7 @@ impl DateTime { /// Returns `Err` when this object is out of bounds pub fn from_time(tm: ::time::Tm) -> Result { if tm.tm_year >= 80 && tm.tm_year <= 207 - && tm.tm_mon >= 1 && tm.tm_mon <= 31 + && tm.tm_mon >= 0 && tm.tm_mon <= 11 && tm.tm_mday >= 1 && tm.tm_mday <= 31 && tm.tm_hour >= 0 && tm.tm_hour <= 23 && tm.tm_min >= 0 && tm.tm_min <= 59 @@ -373,4 +373,15 @@ mod test { #[cfg(feature = "time")] assert_eq!(format!("{}", dt.to_time().rfc3339()), "1980-00-00T00:00:00Z"); } + + #[cfg(feature = "time")] + #[test] + fn time_at_january() { + use super::DateTime; + + // 2020-01-01 00:00:00 + let clock = ::time::Timespec::new(1577836800, 0); + let tm = ::time::at_utc(clock); + assert!(DateTime::from_time(tm).is_ok()); + } }