Author: Armin Rigo <ar...@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]);
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to