[前][次][番号順一覧][スレッド一覧]

ruby-changes:25165

From: knu <ko1@a...>
Date: Tue, 16 Oct 2012 17:56:21 +0900 (JST)
Subject: [ruby-changes:25165] knu:r37218 (ruby_1_8): Merge r33999 from ruby_1_8_7.

knu	2012-10-16 17:54:57 +0900 (Tue, 16 Oct 2012)

  New Revision: 37218

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37218

  Log:
    Merge r33999 from ruby_1_8_7.
    
    * ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
      store->ex_data.sk.  [ruby-core:28907] [ruby-core:23971]
      [ruby-core:18121]

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/ext/openssl/ossl_x509store.c

Index: ruby_1_8/ext/openssl/ossl_x509store.c
===================================================================
--- ruby_1_8/ext/openssl/ossl_x509store.c	(revision 37217)
+++ ruby_1_8/ext/openssl/ossl_x509store.c	(revision 37218)
@@ -131,6 +131,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);
 
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 37217)
+++ ruby_1_8/ChangeLog	(revision 37218)
@@ -1,3 +1,9 @@
+Tue Oct 16 16:30:50 2012  Akinori MUSHA  <knu@i...>
+
+	* ext/openssl/ossl_x509store.c (ossl_x509store_initialize): initialize
+	  store->ex_data.sk.  [ruby-core:28907] [ruby-core:23971]
+	  [ruby-core:18121]
+
 Tue Oct 16 16:26:15 2012  Akinori MUSHA  <knu@i...>
 
 	* ext/tk/extconf.rb: copy from trunk, as requested by Hidetoshi NAGAI.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]