Skip to content

Commit 95a7aab

Browse files
committed
merge revision(s) 27064:
* 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 Signed-off-by: URABE, Shyouhei <shyouhei@ruby-lang.org> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@33999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 64a12d3 commit 95a7aab

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Mon Oct 17 03:56:12 2011 Yusuke Endoh <mame@tsg.ne.jp>
2+
3+
* ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
4+
store->ex_data.sk. [ruby-core:28907] [ruby-core:23971]
5+
[ruby-core:18121]
6+
17
Thu Jun 30 12:52:56 2011 WATANABE Hirofumi <eban@ruby-lang.org>
28

39
* ext/tk/extconf.rb (intptr_t, uintptr_t): support for the latest ActiveTcl with mingw.

ext/openssl/ossl_x509store.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ ossl_x509store_initialize(int argc, VALUE *argv, VALUE self)
131131

132132
/* BUG: This method takes any number of arguments but appears to ignore them. */
133133
GetX509Store(self, store);
134+
store->ex_data.sk = NULL;
134135
X509_STORE_set_verify_cb_func(store, ossl_verify_cb);
135136
ossl_x509store_set_vfy_cb(self, Qnil);
136137

0 commit comments

Comments
 (0)