[svn:parrot] r47202 - branches/gc_massacre/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Mon May 31 10:18:51 UTC 2010


Author: bacek
Date: Mon May 31 10:18:51 2010
New Revision: 47202
URL: https://trac.parrot.org/parrot/changeset/47202

Log:
Decrement list count on List.remove

Modified:
   branches/gc_massacre/src/gc/list.c

Modified: branches/gc_massacre/src/gc/list.c
==============================================================================
--- branches/gc_massacre/src/gc/list.c	Mon May 31 10:18:27 2010	(r47201)
+++ branches/gc_massacre/src/gc/list.c	Mon May 31 10:18:51 2010	(r47202)
@@ -110,6 +110,7 @@
             next->prev = prev;
         item->prev = item->next = NULL;
     }
+    list->count--;
 }
 
 


More information about the parrot-commits mailing list