mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
openssl: use NUM2TIMET() to convert Integer to time_t
* ext/openssl/ossl_asn1.c (time_to_time_t): Use NUM2TIMET() instead of NUM2LONG(). time_t may be larger than long. [ruby-core:45552] [Bug #6571] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0e94f4a002
commit
3333b6b7ad
2 changed files with 7 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
Mon May 30 22:02:01 2016 Kazuki Yamaguchi <k@rhe.jp>
|
||||
|
||||
* ext/openssl/ossl_asn1.c (time_to_time_t): Use NUM2TIMET() instead of
|
||||
NUM2LONG(). time_t may be larger than long.
|
||||
[ruby-core:45552] [Bug #6571]
|
||||
|
||||
Mon May 30 21:15:37 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* string.c: Document current behavior for other case mapping methods
|
||||
|
|
|
@ -75,15 +75,10 @@ asn1time_to_time(ASN1_TIME *time)
|
|||
return rb_funcall2(rb_cTime, rb_intern("utc"), 6, argv);
|
||||
}
|
||||
|
||||
/*
|
||||
* This function is not exported in Ruby's *.h
|
||||
*/
|
||||
extern struct timeval rb_time_timeval(VALUE);
|
||||
|
||||
time_t
|
||||
time_to_time_t(VALUE time)
|
||||
{
|
||||
return (time_t)NUM2LONG(rb_Integer(time));
|
||||
return (time_t)NUM2TIMET(rb_Integer(time));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue