From ef9cf36d121c1af5c05dd0e0023ac7008c028a92 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 12 Sep 2016 15:16:09 +0000 Subject: * 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 --- time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time.c b/time.c index e31944ada7..ec9a04baca 100644 --- a/time.c +++ b/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 -- cgit v1.2.3