[svn:parrot] r44399 - branches/boehm_gc_2/src

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Feb 23 19:48:49 UTC 2010


Author: bacek
Date: Tue Feb 23 19:48:49 2010
New Revision: 44399
URL: https://trac.parrot.org/parrot/changeset/44399

Log:
Switch to Parrot_gc_strdup

Modified:
   branches/boehm_gc_2/src/packfile.c

Modified: branches/boehm_gc_2/src/packfile.c
==============================================================================
--- branches/boehm_gc_2/src/packfile.c	Tue Feb 23 19:48:28 2010	(r44398)
+++ branches/boehm_gc_2/src/packfile.c	Tue Feb 23 19:48:49 2010	(r44399)
@@ -3565,7 +3565,7 @@
 
     self->fixups[i]         = mem_gc_allocate_zeroed_typed(interp, PackFile_FixupEntry);
     self->fixups[i]->type   = type;
-    self->fixups[i]->name   = mem_sys_strdup(label);
+    self->fixups[i]->name   = Parrot_gc_strdup(interp, label);
     self->fixups[i]->offset = offs;
 }
 


More information about the parrot-commits mailing list