[svn:parrot] r43306 - branches/boehm_gc/compilers/imcc

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Dec 29 10:30:54 UTC 2009


Author: bacek
Date: Tue Dec 29 10:30:52 2009
New Revision: 43306
URL: https://trac.parrot.org/parrot/changeset/43306

Log:
One more free vs mem_sys_free usage in IMCC.

Modified:
   branches/boehm_gc/compilers/imcc/pbc.c

Modified: branches/boehm_gc/compilers/imcc/pbc.c
==============================================================================
--- branches/boehm_gc/compilers/imcc/pbc.c	Tue Dec 29 10:22:24 2009	(r43305)
+++ branches/boehm_gc/compilers/imcc/pbc.c	Tue Dec 29 10:30:52 2009	(r43306)
@@ -1276,7 +1276,7 @@
 
         if (real_name) {
             char * const p = mem_sys_strdup(real_name + 1);
-            free(r->name);
+            mem_sys_free(r->name);
             r->name = p;
         }
     }


More information about the parrot-commits mailing list