Correctly handle large negative usec value.

This commit is contained in:
Clayton Smith
2017-04-03 14:22:26 -04:00
parent e2e2edae51
commit dc4fba28c5
+1 -1
View File
@@ -245,7 +245,7 @@ time_alloc(mrb_state *mrb, double sec, double usec, enum mrb_timezone timezone)
tm->usec -= sec2 * 1000000;
tm->sec += sec2;
}
if (tm->usec >= 1000000) {
else if (tm->usec >= 1000000) {
long sec2 = usec / 1000000;
tm->usec -= sec2 * 1000000;
tm->sec += sec2;