[#116016] [Ruby master Bug#20150] Memory leak in grapheme clusters — "peterzhu2118 (Peter Zhu) via ruby-core" <ruby-core@...>
Issue #20150 has been reported by peterzhu2118 (Peter Zhu).
7 messages
2024/01/04
[#116382] [Ruby master Feature#20205] Enable `frozen_string_literal` by default — "byroot (Jean Boussier) via ruby-core" <ruby-core@...>
Issue #20205 has been reported by byroot (Jean Boussier).
77 messages
2024/01/23
[ruby-core:116015] [Ruby master Bug#20149] Fix memory leak in IPSocket rb_getaddrinfo
From:
"HParker (Adam Hess) via ruby-core" <ruby-core@...>
Date:
2024-01-04 20:08:14 UTC
List:
ruby-core #116015
Issue #20149 has been reported by HParker (Adam Hess).
----------------------------------------
Bug #20149: Fix memory leak in IPSocket rb_getaddrinfo
https://bugs.ruby-lang.org/issues/20149
* Author: HParker (Adam Hess)
* Status: Open
* Priority: Normal
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN
----------------------------------------
PR: https://github.com/ruby/ruby/pull/9413
Fixes a memory leak pthread_attr is created, but never cleaned up
```
require 'socket'
10.times do
10_000.times do
IPSocket.getaddress("localhost")
end
puts `ps -o rss= -p #{$$}`
end
```
before:
```
26744
33400
39928
46328
53240
59640
66168
72696
79352
85880
```
after:
```
20864
20864
20864
20864
20864
20992
20992
20992
20992
21120
```
This likely needs a backport to Ruby 3.3 series.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/