mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 50187,50202: [Backport #11051]
* ext/socket/raddrinfo.c (addrinfo_mload): fix memory leak of addrinfo. [ruby-dev:48923] [Bug #11051] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@50623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f0f734fda2
commit
645b4e1130
4 changed files with 18 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Sun May 24 02:21:47 2015 Masahiro Tomita <tommy@tmtm.org>
|
||||
|
||||
* ext/socket/raddrinfo.c (addrinfo_mload): fix memory leak of
|
||||
addrinfo. [ruby-dev:48923] [Bug #11051]
|
||||
|
||||
Sun May 24 02:17:05 2015 Kenta Murata <mrkn@cookpad.com>
|
||||
|
||||
* bigdecimal: conform to ruby's license. [ruby-core:68466] [Bug #10952]
|
||||
|
|
|
|||
|
|
@ -1643,6 +1643,7 @@ addrinfo_mload(VALUE self, VALUE ary)
|
|||
|
||||
len = res->ai->ai_addrlen;
|
||||
memcpy(&ss, res->ai->ai_addr, res->ai->ai_addrlen);
|
||||
rb_freeaddrinfo(res);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -468,6 +468,17 @@ class TestSocketAddrinfo < Test::Unit::TestCase
|
|||
assert_equal(ai1.canonname, ai2.canonname)
|
||||
end
|
||||
|
||||
def test_marshal_memory_leak
|
||||
bug11051 = '[ruby-dev:48923] [Bug #11051]'
|
||||
assert_no_memory_leak(%w[-rsocket], <<-PREP, <<-CODE, bug11051, rss: true, limit: 2.0)
|
||||
d = Marshal.dump(Addrinfo.tcp("127.0.0.1", 80))
|
||||
1000.times {Marshal.load(d)}
|
||||
PREP
|
||||
GC.start
|
||||
20_000.times {Marshal.load(d)}
|
||||
CODE
|
||||
end
|
||||
|
||||
if Socket.const_defined?("AF_INET6") && Socket::AF_INET6.is_a?(Integer)
|
||||
|
||||
def test_addrinfo_new_inet6
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#define RUBY_VERSION "2.2.3"
|
||||
#define RUBY_RELEASE_DATE "2015-05-24"
|
||||
#define RUBY_PATCHLEVEL 119
|
||||
#define RUBY_PATCHLEVEL 120
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2015
|
||||
#define RUBY_RELEASE_MONTH 5
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue