[pypy-commit] stmgc default: fix

arigo noreply at buildbot.pypy.org
Sat Jun 15 22:46:42 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r138:440f456cecdc
Date: 2013-06-15 22:19 +0200
http://bitbucket.org/pypy/stmgc/changeset/440f456cecdc/

Log:	fix

diff --git a/c4/nursery.c b/c4/nursery.c
--- a/c4/nursery.c
+++ b/c4/nursery.c
@@ -131,8 +131,8 @@
 
 static void mark_private_from_protected(struct tx_descriptor *d)
 {
-    long i, size = d->public_with_young_copy.size;
-    gcptr *items = d->public_with_young_copy.items;
+    long i, size = d->private_from_protected.size;
+    gcptr *items = d->private_from_protected.items;
 
     for (i = d->num_private_from_protected_known_old; i < size; i++) {
         visit_if_young(&items[i]);


More information about the pypy-commit mailing list