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

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Feb 23 21:03:55 UTC 2010


Author: bacek
Date: Tue Feb 23 21:03:53 2010
New Revision: 44410
URL: https://trac.parrot.org/parrot/changeset/44410

Log:
Use gc_strdup

Modified:
   branches/boehm_gc_2/src/parrot_debugger.c

Modified: branches/boehm_gc_2/src/parrot_debugger.c
==============================================================================
--- branches/boehm_gc_2/src/parrot_debugger.c	Tue Feb 23 21:03:33 2010	(r44409)
+++ branches/boehm_gc_2/src/parrot_debugger.c	Tue Feb 23 21:03:53 2010	(r44410)
@@ -215,7 +215,7 @@
             Parrot_pbc_load(interp, pf);
 
             IMCC_push_parser_state(interp);
-            IMCC_INFO(interp)->state->file = mem_sys_strdup(filename);
+            IMCC_INFO(interp)->state->file = Parrot_gc_strdup(interp, filename);
 
             if (!(imc_yyin_set(fopen(filename, "r"), yyscanner)))    {
                 IMCC_fatal_standalone(interp, EXCEPTION_PIO_ERROR,


More information about the parrot-commits mailing list