Project

General

Profile

Bug #13412

Updated by nobu (Nobuyoshi Nakada) about 7 years ago

The script causes silent (no output [BUG]) SEGV or "cfp consistency error" on my environment. 

 ```ruby ``` 
 define_method(:foo) { foo } 

 loop do 
   1.times do 
     1.times do 
       begin 
         foo 
       rescue Exception 
         nil 
       end 
     end 
   end 
 end 
 ``` 

 I think this is related to #11430 (maybe same).

Back