From c71f135dc8b214a7f302aedfa9ad2ec63490adc2 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Wed, 11 Oct 2000 00:40:30 +0000 Subject: [PATCH] The #7198 was a false alarm. p4raw-id: //depot/perl@7200 --- pp_hot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pp_hot.c b/pp_hot.c index c49e929..400350d 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -169,8 +169,7 @@ PP(pp_concat) s = (U8*)SvPV(right,len); if (TARG == right) { /* Take a copy since we're about to overwrite TARG */ - olds = s; - s = (U8*)savepvn((char*)s, len); + olds = s = (U8*)savepvn((char*)s, len); } if (!SvOK(left) && SvTYPE(left) <= SVt_PVMG) sv_setpv(left, ""); /* Suppress warning. */ -- 2.7.4