* time.c (init_leap_second_info): check the result of

gmtime_with_leapsecond.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-06-11 14:26:57 +00:00
Родитель 78e3dfd95b
Коммит 8c7786bf58
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Fri Jun 11 23:21:35 2010 Tanaka Akira <akr@fsij.org>
* time.c (init_leap_second_info): check the result of
gmtime_with_leapsecond.
Fri Jun 11 23:04:59 2010 NARUSE, Yui <naruse@ruby-lang.org>
* ext/openssl/ossl_ssl.c (ossl_sslctx_get_ciphers):

3
time.c
Просмотреть файл

@ -1280,7 +1280,8 @@ init_leap_second_info()
else
known_leap_seconds_limit = now + (time_t)(366*86400);
gmtime_with_leapsecond(&known_leap_seconds_limit, &result);
if (!gmtime_with_leapsecond(&known_leap_seconds_limit, &result))
return;
vtm.year = LONG2NUM(result.tm_year + 1900);
vtm.mon = result.tm_mon + 1;