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

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Dec 29 09:56:42 UTC 2009


Author: bacek
Date: Tue Dec 29 09:56:42 2009
New Revision: 43301
URL: https://trac.parrot.org/parrot/changeset/43301

Log:
Fix one more free vs mem_sys_free in IMCC...

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

Modified: branches/boehm_gc/compilers/imcc/main.c
==============================================================================
--- branches/boehm_gc/compilers/imcc/main.c	Tue Dec 29 06:12:14 2009	(r43300)
+++ branches/boehm_gc/compilers/imcc/main.c	Tue Dec 29 09:56:42 2009	(r43301)
@@ -849,7 +849,7 @@
             "Couldn't write %s\n", output_file);
     fclose(fp);
     IMCC_info(interp, 1, "%s written.\n", output_file);
-    free(packed);
+    mem_sys_free(packed);
 }
 
 /*


More information about the parrot-commits mailing list