mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_ssl_session.c (ossl_ssl_session_alloc): should
return value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12149 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
953e8aca2b
commit
22405dad92
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Apr 5 15:13:34 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/openssl/ossl_ssl_session.c (ossl_ssl_session_alloc): should
|
||||
return value.
|
||||
|
||||
Thu Apr 5 14:58:49 2007 Technorama Ltd. <oss-ruby@technorama.net>
|
||||
* ext/openssl/ossl_pkcs5.c: New module.
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ static VALUE eSSLSession;
|
|||
|
||||
static VALUE ossl_ssl_session_alloc(VALUE klass)
|
||||
{
|
||||
Data_Wrap_Struct(klass, 0, SSL_SESSION_free, NULL);
|
||||
return Data_Wrap_Struct(klass, 0, SSL_SESSION_free, NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue