From ee6954bb20647862c5a8f6710573686a12cee572 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Fri, 17 Jun 2005 19:37:56 +0000 Subject: [PATCH] Fix compiling with -DPURIFY p4raw-id: //depot/perl@24891 --- sv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -} + } } /* -- 2.7.4