28 Feb
2009
28 Feb
'09
8:33 p.m.
Revision: 818 http://trac.macosforge.org/projects/ruby/changeset/818 Author: lsansonetti@apple.com Date: 2009-02-28 12:33:06 -0800 (Sat, 28 Feb 2009) Log Message: ----------- fixed a GC leak Modified Paths: -------------- MacRuby/trunk/st.c Modified: MacRuby/trunk/st.c =================================================================== --- MacRuby/trunk/st.c 2009-02-28 20:31:47 UTC (rev 817) +++ MacRuby/trunk/st.c 2009-02-28 20:33:06 UTC (rev 818) @@ -454,7 +454,7 @@ do { hash_val = ptr->hash % new_num_bins; ptr->next = new_bins[hash_val]; - new_bins[hash_val] = ptr; + GC_WB(&new_bins[hash_val], ptr); } while ((ptr = ptr->fore) != table->head); } }
6097
Age (days ago)
6097
Last active (days ago)
0 comments
1 participants
participants (1)
-
source_changes@macosforge.org