[#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:76621] [Ruby trunk Bug#12565] SEGV when using &:foo with tail call optimization
From:
nagachika00@...
Date:
2016-07-30 03:32:02 UTC
List:
ruby-core #76621
Issue #12565 has been updated by Tomoyuki Chikanaga.
Backport changed from 2.1: DONTNEED, 2.2: DONTNEED, 2.3: REQUIRED to 2.1: DONTNEED, 2.2: DONTNEED, 2.3: DONE
ruby_2_3 r55779 merged revision(s) 55605.
----------------------------------------
Bug #12565: SEGV when using &:foo with tail call optimization
https://bugs.ruby-lang.org/issues/12565#change-59841
* Author: Shugo Maeda
* Status: Closed
* Priority: Normal
* Assignee: Nobuyoshi Nakada
* ruby -v:
* Backport: 2.1: DONTNEED, 2.2: DONTNEED, 2.3: DONE
----------------------------------------
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>