Project

General

Profile

Actions

Bug #20149

closed

Fix memory leak in IPSocket rb_getaddrinfo

Added by HParker (Adam Hess) 4 months ago. Updated 3 months ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:116015]

Description

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.

Actions #1

Updated by peterzhu2118 (Peter Zhu) 4 months ago

  • Backport changed from 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN to 3.0: DONTNEED, 3.1: DONTNEED, 3.2: DONTNEED, 3.3: REQUIRED
Actions #2

Updated by jeremyevans0 (Jeremy Evans) 4 months ago

  • Status changed from Open to Closed

Updated by naruse (Yui NARUSE) 3 months ago

  • Backport changed from 3.0: DONTNEED, 3.1: DONTNEED, 3.2: DONTNEED, 3.3: REQUIRED to 3.0: DONTNEED, 3.1: DONTNEED, 3.2: DONTNEED, 3.3: DONE

ruby_3_3 2886564279dff87a6c293f6e80436eb2b309967e merged revision(s) 6aacbd690ccde53f9b97c6673482cb11df3f2955.

Actions

Also available in: Atom PDF

Like1
Like1Like0Like0