time.c: remove duplicated UTC condition check.

parent 171d32c0
...@@ -476,24 +476,21 @@ time_mktime(mrb_state *mrb, mrb_int ayear, mrb_int amonth, mrb_int aday, ...@@ -476,24 +476,21 @@ time_mktime(mrb_state *mrb, mrb_int ayear, mrb_int amonth, mrb_int aday,
nowtime.tm_sec = (int)asec; nowtime.tm_sec = (int)asec;
nowtime.tm_isdst = -1; nowtime.tm_isdst = -1;
time_t (*mk)(struct tm*);
if (timezone == MRB_TIMEZONE_UTC) { if (timezone == MRB_TIMEZONE_UTC) {
nowsecs = timegm(&nowtime); mk = timegm;
} }
else { else {
nowsecs = mktime(&nowtime); mk = mktime;
} }
nowsecs = (*mk)(&nowtime);
if (nowsecs == (time_t)-1) { if (nowsecs == (time_t)-1) {
nowtime.tm_sec += 1; nowtime.tm_sec += 1; /* maybe Epoch-1 sec */
if (timezone == MRB_TIMEZONE_UTC) { nowsecs = (*mk)(&nowtime);
nowsecs = timegm(&nowtime); if (nowsecs != 0) { /* check if Epoch */
}
else {
nowsecs = mktime(&nowtime);
}
if (nowsecs != 0) {
mrb_raise(mrb, E_ARGUMENT_ERROR, "Not a valid time"); mrb_raise(mrb, E_ARGUMENT_ERROR, "Not a valid time");
} }
nowsecs = (time_t)-1; nowsecs = (time_t)-1; /* valid Epoch-1 */
} }
return time_alloc_time(mrb, nowsecs, ausec, timezone); return time_alloc_time(mrb, nowsecs, ausec, timezone);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment