[svn:parrot] r40742 - trunk/src/gc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun Aug 23 16:38:17 UTC 2009


Author: whiteknight
Date: Sun Aug 23 16:38:17 2009
New Revision: 40742
URL: https://trac.parrot.org/parrot/changeset/40742

Log:
[gc] a small fix to the fixed-size allocator that *likely* is the source of errors on Win32 using this tool. Hasn't fixed the issue with Complex.t, however

Modified:
   trunk/src/gc/mark_sweep.c

Modified: trunk/src/gc/mark_sweep.c
==============================================================================
--- trunk/src/gc/mark_sweep.c	Sun Aug 23 15:30:50 2009	(r40741)
+++ trunk/src/gc/mark_sweep.c	Sun Aug 23 16:38:17 2009	(r40742)
@@ -1282,7 +1282,7 @@
         arenas->num_attribs = total_size;
     }
     if (pools[idx] == NULL)
-        pools[idx] = Parrot_gc_create_attrib_pool(interp, attrib_size);
+        pools[idx] = Parrot_gc_create_attrib_pool(interp, size);
     return pools[idx];
 }
 


More information about the parrot-commits mailing list