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

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Thu Aug 13 10:16:54 UTC 2009


Author: whiteknight
Date: Thu Aug 13 10:16:54 2009
New Revision: 40519
URL: https://trac.parrot.org/parrot/changeset/40519

Log:
[tt #912] fix a meaningless statement that should have set  pointer to NULL. darbelo++ and kid51++ for finding it

Modified:
   trunk/src/gc/api.c

Modified: trunk/src/gc/api.c
==============================================================================
--- trunk/src/gc/api.c	Thu Aug 13 10:00:07 2009	(r40518)
+++ trunk/src/gc/api.c	Thu Aug 13 10:16:54 2009	(r40519)
@@ -1076,7 +1076,7 @@
     mem_internal_free(interp->arena_base->sized_header_pools);
     if (interp->arena_base->attrib_pools)
         mem_internal_free(interp->arena_base->attrib_pools);
-    interp->arena_base->attrib_pools;
+    interp->arena_base->attrib_pools = NULL;
     interp->arena_base->sized_header_pools = NULL;
 }
 


More information about the parrot-commits mailing list