Issue #7123 has been updated by seangeo (Sean Geoghegan). File Bug 7123 - seangeo.crash added I've also experience the same issue. We also have a model using state_machine with an around transition and during testing it will crash with a segmentation fault in the GC stack about 10% of the time. If we remove the around_transition there are no longer any crashes when running tests. However, I'm the only one in my team to experience it. I'm using OSX 10.7.3 and other on my team are using a mix of 10.7.4, 10.7.5 and 10.8.x. This has happened with Ruby 1.9.3 p125 and p194. I've attached the crash log for the error. ---------------------------------------- Bug #7123: Segmentation fault in ruby 1.9.3-p194 https://bugs.ruby-lang.org/issues/7123#change-31482 Author: mscottford (M. Scott Ford) Status: Open Priority: Normal Assignee: Category: Target version: ruby -v: ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin12.2.0] Example source for this issue is posted at https://github.com/mscottford/segfault-test, with reproduction instructions. I'm encountering a segmentation fault in ruby 1.9.3-p194 on a project using Rails 3.2.8. The issue is only happening on Mac OS X. Members of my team that are running Linux do not have the same issue. The issue does not occur consistently; it sometimes takes several (20+) runs for the crash to happen. test: ``` require 'spec_helper' describe Widget do it "removes widget on rejection" do widget = Widget.create! expect do widget.reject! end.to change { described_class.count }.by(-1) GC.start end end ``` model: ``` class Widget < ActiveRecord::Base attr_accessor :check_rejection_reason state_machine :initial => :requested do # I suspect that the issue is related to the issue being accessed in this closure after it has been deleted around_transition :requested => :none do |gm, transition, blk| gm.check_rejection_reason = true blk.call gm.check_rejection_reason = false end # This closure deletes the instance, but it is still being accessed by the `around_transition` above. after_transition any => :none do |gm, transition| gm.destroy end on :reject do transition :requested => :none end end end ``` -- http://bugs.ruby-lang.org/