[svn:parrot] r47161 - branches/gc_massacre/src/gc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun May 30 14:57:54 UTC 2010
Author: bacek
Date: Sun May 30 14:57:54 2010
New Revision: 47161
URL: https://trac.parrot.org/parrot/changeset/47161
Log:
Sigh... Fix List.append again
Modified:
branches/gc_massacre/src/gc/list.c
Modified: branches/gc_massacre/src/gc/list.c
==============================================================================
--- branches/gc_massacre/src/gc/list.c Sun May 30 14:57:15 2010 (r47160)
+++ branches/gc_massacre/src/gc/list.c Sun May 30 14:57:54 2010 (r47161)
@@ -61,6 +61,7 @@
else {
item->prev = list->last;
item->next = NULL;
+ list->last->next = item;
list->last = item;
}
list->count++;
More information about the parrot-commits
mailing list