ruby-changes:15184
From: mame <ko1@a...>
Date: Fri, 26 Mar 2010 23:01:44 +0900 (JST)
Subject: [ruby-changes:15184] Ruby:r27064 (trunk): * ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
mame 2010-03-26 23:01:24 +0900 (Fri, 26 Mar 2010) New Revision: 27064 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27064 Log: * ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize store->ex_data.sk. [ruby-core:28907] [ruby-core:23971] [ruby-core:18121] Modified files: trunk/ChangeLog trunk/ext/openssl/ossl_x509store.c Index: ChangeLog =================================================================== --- ChangeLog (revision 27063) +++ ChangeLog (revision 27064) @@ -1,3 +1,9 @@ +Fri Mar 26 22:58:10 2010 Yusuke Endoh <mame@t...> + + * 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@i...> * Makefile.in (DOXYGEN): Define a missing variable DOXYGEN. Build Index: ext/openssl/ossl_x509store.c =================================================================== --- ext/openssl/ossl_x509store.c (revision 27063) +++ ext/openssl/ossl_x509store.c (revision 27064) @@ -130,6 +130,7 @@ /* 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); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/