[#76442] [Ruby trunk Feature#11741] Migrate Ruby to Git from Subversion — naruse@...
Issue #11741 has been updated by Yui NARUSE.
3 messages
2016/07/19
[#76515] [Ruby trunk Bug#12610] webrick: protect from httpoxy — nagachika00@...
Issue #12610 has been updated by Tomoyuki Chikanaga.
3 messages
2016/07/22
[ruby-core:76288] [Ruby trunk Bug#12565] SEGV when using &:foo with tail call optimization
From:
shugo@...
Date:
2016-07-07 10:57:16 UTC
List:
ruby-core #76288
Issue #12565 has been reported by Shugo Maeda.
----------------------------------------
Bug #12565: SEGV when using &:foo with tail call optimization
https://bugs.ruby-lang.org/issues/12565
* Author: Shugo Maeda
* Status: Open
* Priority: Normal
* Assignee:
* ruby -v:
* Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN
----------------------------------------
The following script causes SEGV:
```ruby
RubyVM::InstructionSequence.compile_option = {
:tailcall_optimization => true,
:trace_instruction => false
}
eval(<<EOF)
def foo(&block)
yield(1, 2)
end
def bar
foo(&:*)
end
p bar
EOF
```
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>