Skip to content

Commit 32299d9

Browse files
committed
merge revision(s) 54097: [Backport ruby#12069]
* ext/openssl/ossl_ssl.c (ossl_sslctx_setup): document as MT-unsafe [ruby-core:73803] [Bug ruby#12069] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@54282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 3e98a64 commit 32299d9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Fri Mar 25 18:36:04 2016 Eric Wong <e@80x24.org>
2+
3+
* ext/openssl/ossl_ssl.c (ossl_sslctx_setup): document as MT-unsafe
4+
[ruby-core:73803] [Bug #12069]
5+
16
Fri Mar 25 18:35:08 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
27

38
* ext/tk/lib/tkextlib/tcllib/tablelist_tile.rb: fix method name typo.

ext/openssl/ossl_ssl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,8 +671,8 @@ ssl_info_cb(const SSL *ssl, int where, int val)
671671
* ctx.setup => nil # thereafter
672672
*
673673
* This method is called automatically when a new SSLSocket is created.
674-
* Normally you do not need to call this method (unless you are writing an
675-
* extension in C).
674+
* However, it is not thread-safe and must be called before creating
675+
* SSLSocket objects in a multi-threaded program.
676676
*/
677677
static VALUE
678678
ossl_sslctx_setup(VALUE self)

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.9"
22
#define RUBY_RELEASE_DATE "2016-03-25"
3-
#define RUBY_PATCHLEVEL 479
3+
#define RUBY_PATCHLEVEL 480
44

55
#define RUBY_RELEASE_YEAR 2016
66
#define RUBY_RELEASE_MONTH 3

0 commit comments

Comments
 (0)