[#68845] [Ruby trunk - Feature #11056] [PATCH] lib/net/*: use io/wait methods instead of IO.select — normalperson@...
Issue #11056 has been updated by Eric Wong.
3 messages
2015/04/11
[#68945] [Ruby trunk - Feature #11083] [Open] Gemify net-telnet — shibata.hiroshi@...
Issue #11083 has been reported by Hiroshi SHIBATA.
4 messages
2015/04/21
[#68951] Re: [Ruby trunk - Feature #11083] [Open] Gemify net-telnet
— Eric Wong <normalperson@...>
2015/04/21
shibata.hiroshi@gmail.com wrote:
[#69012] [Ruby trunk - Feature #11105] [Open] ES6-like hash literals — shugo@...
Issue #11105 has been reported by Shugo Maeda.
5 messages
2015/04/29
[ruby-core:68882] [Ruby trunk - Bug #10735] Memory leak in openssl ossl_pkey_sign
From:
e@...
Date:
2015-04-13 23:37:18 UTC
List:
ruby-core #68882
Issue #10735 has been updated by Zachary Scott. I've applied the patch to a branch, if you're on Ruby 2.2 you can try it out by adding this to your Gemfile: `gem "openssl", github: "ruby/openssl", branch: "ruby-bug-10735"` ---------------------------------------- Bug #10735: Memory leak in openssl ossl_pkey_sign https://bugs.ruby-lang.org/issues/10735#change-52148 * Author: Viktor Vasilev * Status: Assigned * Priority: Normal * Assignee: openssl * ruby -v: ruby 1.9.3p484 (2013-11-22 revision 43786) [x86_64-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- Similar to the memory leak fixed in https://bugs.ruby-lang.org/issues/9743 there is an issue with ossl_pkey_sign. The ruby heap usage reported through GC.stat remains very stable, while the process heap grows linearly with the number of OpenSSL::PKey::RSA sign calls. The documentation at https://www.openssl.org/docs/crypto/EVP_SignInit.html (similar to EVP_VerifyInit) mentions that not disposing the context causes a leak. To reproduce: https://gist.github.com/viktorium/f032cdc8906f43dac94e A patch with a fix very similar to issue #9743: https://gist.github.com/viktorium/b466b72c83d2ab90182c -- https://bugs.ruby-lang.org/