From: Nicholas Clark Date: Fri, 17 Jun 2005 19:37:56 +0000 (+0000) Subject: Fix compiling with -DPURIFY X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ee6954bb20647862c5a8f6710573686a12cee572;p=p5sagit%2Fp5-mst-13.2.git Fix compiling with -DPURIFY p4raw-id: //depot/perl@24891 --- diff --git a/sv.c b/sv.c index 66094a2..e423cbb 100644 --- a/sv.c +++ b/sv.c @@ -1573,11 +1573,11 @@ Perl_sv_upgrade(pTHX_ register SV *sv, U32 mt) if (old_body_arena) { #ifdef PURIFY - my_safefree(old_body) + my_safefree(old_body); #else S_del_body(aTHX_ old_body, old_body_arena, old_body_offset); #endif -} + } } /*