Actions
Bug #14660
closedRubyVM::InstructionSequence.load_from_binary(bin).eval may cause SEGV after r62856
Description
A certain script can cause SEGV when ISeq#to_binary -> load_from_binary -> eval.
$ ./miniruby -ve 'str = "class P; def p; end; def q; end; E = \"\"; N = \"\#{E}\"; attr_reader :i; end"; iseq = RubyVM::InstructionSequence.compile(str); bin = iseq.to_binary; RubyVM::InstructionSequence.load_from_binary(bin).eval'
ruby 2.6.0dev (2018-04-02 trunk 63063) [x86_64-linux]
Segmentation fault (core dumped)
(Note above script is shortened version of "minitest/pride_plugin.rb")
git bisect
shows it is since r62856, but I don't know the commit is "bad" or not.
It may make apparent a hidden bug, or increase the probability of reproduction.
Actions
Like0
Like0Like0Like0Like0