Project

General

Profile

Bug #11756

Updated by nobu (Nobuyoshi Nakada) over 8 years ago

How to reproduce: 

 Run this script: 

 ~~~ruby ~~~ 
 require 'ostruct' 

 thread = Thread.new { 0 } 
 thread.name = OpenStruct.new 

 puts thread.inspect 
 ~~~ 

 Result: 

 ~~~ 
 ../thread_name.rb:6: [BUG] Segmentation fault at 0x00000000000000 
 ruby 2.3.0preview1 (2015-11-11 trunk 52539) [x86_64-darwin15] 
 ~~~ 

 I'll try to provide a patch ASAP.

Back