From d325f7309654956e9e26430e9e2da1941402507e Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Thu, 10 May 2012 09:33:57 +0200 Subject: [PATCH] rename Parrot_free_cstring to Parrot_str_free_cstring --- dynext/pmc/wmlsbytecode.pmc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dynext/pmc/wmlsbytecode.pmc b/dynext/pmc/wmlsbytecode.pmc index 1b195a5..d0c2b7e 100644 --- a/dynext/pmc/wmlsbytecode.pmc +++ b/dynext/pmc/wmlsbytecode.pmc @@ -455,10 +455,10 @@ Loads WMLScript bytecode. goto err; if (_load_function_pool(INTERP)) goto err; - Parrot_free_cstring(bytecode); + Parrot_str_free_cstring(bytecode); RETURN(PMC *script); err: - Parrot_free_cstring(bytecode); + Parrot_str_free_cstring(bytecode); RETURN(PMC *NULL); }