Merge pull request #100 from nareshganduri/master
Fix bounds check in DateTime::from_time
This commit is contained in:
commit
895cc95bb8
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ impl DateTime {
|
||||||
///
|
///
|
||||||
/// Returns `Err` when this object is out of bounds
|
/// Returns `Err` when this object is out of bounds
|
||||||
pub fn from_time(tm: ::time::Tm) -> Result<DateTime, ()> {
|
pub fn from_time(tm: ::time::Tm) -> Result<DateTime, ()> {
|
||||||
if tm.tm_year >= 1980 && tm.tm_year <= 2107
|
if tm.tm_year >= 80 && tm.tm_year <= 207
|
||||||
&& tm.tm_mon >= 1 && tm.tm_mon <= 31
|
&& tm.tm_mon >= 1 && tm.tm_mon <= 31
|
||||||
&& tm.tm_mday >= 1 && tm.tm_mday <= 31
|
&& tm.tm_mday >= 1 && tm.tm_mday <= 31
|
||||||
&& tm.tm_hour >= 0 && tm.tm_hour <= 23
|
&& tm.tm_hour >= 0 && tm.tm_hour <= 23
|
||||||
|
|
Loading…
Add table
Reference in a new issue