mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* time.c (time_arg): guard for mswin64 CI.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
94bbe4f0eb
commit
774442d27f
1 changed files with 1 additions and 1 deletions
2
time.c
2
time.c
|
@ -2453,7 +2453,6 @@ obj2subsecx(VALUE obj, VALUE *subsecx)
|
|||
else {
|
||||
divmodv(num_exact(obj), INT2FIX(1), &obj, &subsec);
|
||||
*subsecx = w2v(rb_time_magnify(v2w(subsec)));
|
||||
RB_GC_GUARD(subsec);
|
||||
}
|
||||
return obj2ubits(obj, 6); /* vtm->sec */
|
||||
}
|
||||
|
@ -2592,6 +2591,7 @@ time_arg(int argc, VALUE *argv, struct vtm *vtm)
|
|||
}
|
||||
|
||||
validate_vtm(vtm);
|
||||
RB_GC_GUARD(vtm->subsecx);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in a new issue