Actions
Bug #12727
closedSegfault when subclassing Thread with bad initialize
Description
I imagine that this is a really unlikely problem to encounter in real code, but...
class MyThing < Thread
def initialize
raise
end
end
MyThing.new do
loop do
puts "hello"
sleep(1)
end
end
sleep
Produces a segfault for me, and I've had someone else confirm as well.
Actions
Like0
Like0Like0Like0