ActionsLike0
Bug #19835
closedParser leaks memory for incomplete tokens
Description
GitHub Pull Request: https://github.com/ruby/ruby/pull/8192
The parser does not free the tbl
of the struct vtable
when there are leftover lvtbl
in the parser. This causes a memory leak.
The following script reproduces this issue:
10.times do
100_000.times do
Ripper.parse("class Foo")
end
puts `ps -o rss= -p #{$$}`
end
Updated by nagachika (Tomoyuki Chikanaga) over 1 year ago
- Backport changed from 3.0: REQUIRED, 3.1: REQUIRED, 3.2: REQUIRED to 3.0: REQUIRED, 3.1: REQUIRED, 3.2: DONE
Updated by nobu (Nobuyoshi Nakada) 10 months ago
- Related to Bug #20521: Memory leak in Ripper parsing added
ActionsLike0