From 1ab5d3947c76cbd3aceb055a2d5c0a970b64ac63 Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 26 Mar 2010 14:01:24 +0000 Subject: * 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 --- ext/openssl/ossl_x509store.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ext') diff --git a/ext/openssl/ossl_x509store.c b/ext/openssl/ossl_x509store.c index 23fb952305..e9923c0475 100644 --- a/ext/openssl/ossl_x509store.c +++ b/ext/openssl/ossl_x509store.c @@ -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); -- cgit v1.2.3