зеркало из https://github.com/github/ruby.git
* 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:
Родитель
78e3dfd95b
Коммит
8c7786bf58
|
@ -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
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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче