Project

General

Profile

Actions

Bug #20304

closed

Memory leak when setting Encoding.default_internal

Added by MaxLap (Maxime Lapointe) 2 months ago. Updated 2 months ago.

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

Description

Problem is present in Ruby 3.2.2, 3.2.3, 3.3.0. Didn't check before.

Put this in a file:

10.times do
  100000.times do
    Encoding.default_internal = nil
  end
  puts `ps -o rss= -p #{$$}`.to_i
end

Result:

$ ruby local.rb
27044
30212
33116
36284
39452
42620
45788
48956
51860
55028

Updated by peterzhu2118 (Peter Zhu) 2 months ago

  • Status changed from Open to Closed
  • Backport changed from 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN to 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: REQUIRED, 3.3: REQUIRED

Updated by MaxLap (Maxime Lapointe) 2 months ago

Ah, thank you! I would have expected that to be in 3.3-head too.

Actions

Also available in: Atom PDF

Like0
Like0Like0