From 4c2e9430917f86266f42cee05b34bd176a501276 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 25 Apr 2009 06:40:59 +0000 Subject: [PATCH] * time.c (time_succ): refactored to avoid gmt variable. (strftimev): use TIME_UTC_P. (time_strftime): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ time.c | 13 ++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index bb7c5ba674..9fd0502db9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Apr 25 15:39:44 2009 Tanaka Akira + + * time.c (time_succ): refactored to avoid gmt variable. + (strftimev): use TIME_UTC_P. + (time_strftime): ditto. + Sat Apr 25 15:21:33 2009 Tanaka Akira * time.c (TIME_UTC_P): new macro.. diff --git a/time.c b/time.c index c32a3cbf51..e8cf565cf1 100644 --- a/time.c +++ b/time.c @@ -2445,13 +2445,12 @@ static VALUE time_succ(VALUE time) { struct time_object *tobj; - int gmt; + struct time_object *tobj2; GetTimeval(time, tobj); - gmt = tobj->gmt; time = time_new_timev(rb_cTime, add(tobj->timev, INT2FIX(1))); - GetTimeval(time, tobj); - tobj->gmt = gmt; + GetTimeval(time, tobj2); + tobj2->gmt = tobj->gmt; return time; } @@ -2930,7 +2929,7 @@ strftimev(const char *fmt, VALUE time) GetTimeval(time, tobj); MAKE_TM(time, tobj); - len = rb_strftime_alloc(&buf, fmt, &tobj->vtm, tobj->timev, tobj->gmt); + len = rb_strftime_alloc(&buf, fmt, &tobj->vtm, tobj->timev, TIME_UTC_P(tobj)); str = rb_str_new(buf, len); if (buf != buffer) xfree(buf); return str; @@ -3013,7 +3012,7 @@ time_strftime(VALUE time, VALUE format) str = rb_str_new(0, 0); while (p < pe) { - len = rb_strftime_alloc(&buf, p, &tobj->vtm, tobj->timev, tobj->gmt); + len = rb_strftime_alloc(&buf, p, &tobj->vtm, tobj->timev, TIME_UTC_P(tobj)); rb_str_cat(str, buf, len); p += strlen(p); if (buf != buffer) { @@ -3027,7 +3026,7 @@ time_strftime(VALUE time, VALUE format) } else { len = rb_strftime_alloc(&buf, RSTRING_PTR(format), - &tobj->vtm, tobj->timev, tobj->gmt); + &tobj->vtm, tobj->timev, TIME_UTC_P(tobj)); } str = rb_str_new(buf, len); if (buf != buffer) xfree(buf);