From 2073258a7d192e8d2bc853e10464a7a5fcac8f2d Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 5 Jun 2012 11:13:18 +0000 Subject: obj_init_copy * object.c (rb_obj_init_copy): should check if trusted too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35922 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- time.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'time.c') diff --git a/time.c b/time.c index b0a2be2455..0d771d2715 100644 --- a/time.c +++ b/time.c @@ -3425,8 +3425,7 @@ time_init_copy(VALUE copy, VALUE time) { struct time_object *tobj, *tcopy; - if (copy == time) return copy; - time_modify(copy); + if (!OBJ_INIT_COPY(copy, time)) return copy; GetTimeval(time, tobj); GetTimeval(copy, tcopy); MEMCPY(tcopy, tobj, struct time_object, 1); -- cgit v1.2.3