Project

General

Profile

Actions

Bug #19836

closed

Parser leaks memory for incomplete lambdas

Added by peterzhu2118 (Peter Zhu) 9 months ago. Updated 9 months ago.

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

Description

GitHub Pull Request: https://github.com/ruby/ruby/pull/8192

The parser does not free the chain of struct vtable, which causes memory leaks.

The following script reproduces this issue:

10.times do
  100_000.times do
    Ripper.parse("-> {")
  end

  puts `ps -o rss= -p #{$$}`
end
Actions #1

Updated by peterzhu2118 (Peter Zhu) 9 months ago

  • Status changed from Open to Closed

Applied in changeset git|0b8f15575a440f85ac686f5b0eae8f8b7c2b72e7.


Fix memory leak for incomplete lambdas

[Bug #19836]

The parser does not free the chain of struct vtable, which causes
memory leaks.

The following script reproduces this issue:

10.times do
  100_000.times do
    Ripper.parse("-> {")
  end

  puts `ps -o rss= -p #{$$}`
end

Updated by nagachika (Tomoyuki Chikanaga) 9 months ago

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

ruby_3_2 0c908fa681271f13750aa64420203f1a58fa03fe merged revision(s) 0b8f15575a440f85ac686f5b0eae8f8b7c2b72e7.

Actions

Also available in: Atom PDF

Like0
Like0Like0