From 6670aee9793b2fb57ecfe0c89111bc08bed79d14 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 10 Jun 2010 22:37:40 +0000 Subject: * time.c (find_time_t): test the result of LOCALTIME. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'time.c') diff --git a/time.c b/time.c index 0363532924..75f1355286 100644 --- a/time.c +++ b/time.c @@ -2870,7 +2870,7 @@ find_time_t(struct tm *tptr, int utc_p, time_t *tp) guess2 += 24 * 60 * 60; if (guess != guess2) { tm = LOCALTIME(&guess2, result); - if (tmcmp(tptr, tm) == 0) { + if (tm && tmcmp(tptr, tm) == 0) { if (guess < guess2) *tp = guess; else @@ -2895,7 +2895,7 @@ find_time_t(struct tm *tptr, int utc_p, time_t *tp) guess2 -= 24 * 60 * 60; if (guess != guess2) { tm = LOCALTIME(&guess2, result); - if (tmcmp(tptr, tm) == 0) { + if (tm && tmcmp(tptr, tm) == 0) { if (guess < guess2) *tp = guess2; else -- cgit v1.2.3