mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
store->ex_data.sk. [ruby-core:28907] [ruby-core:23971] [ruby-core:18121] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4685b6d9c8
commit
1ab5d3947c
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Mar 26 22:58:10 2010 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
|
||||
store->ex_data.sk. [ruby-core:28907] [ruby-core:23971]
|
||||
[ruby-core:18121]
|
||||
|
||||
Fri Mar 26 19:55:41 2010 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* Makefile.in (DOXYGEN): Define a missing variable DOXYGEN. Build
|
||||
|
|
|
@ -130,6 +130,7 @@ ossl_x509store_initialize(int argc, VALUE *argv, VALUE self)
|
|||
|
||||
/* BUG: This method takes any number of arguments but appears to ignore them. */
|
||||
GetX509Store(self, store);
|
||||
store->ex_data.sk = NULL;
|
||||
X509_STORE_set_verify_cb_func(store, ossl_verify_cb);
|
||||
ossl_x509store_set_vfy_cb(self, Qnil);
|
||||
|
||||
|
|
Loading…
Reference in a new issue