From: Jarkko Hietaniemi Date: Wed, 11 Oct 2000 00:40:30 +0000 (+0000) Subject: The #7198 was a false alarm. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c71f135dc8b214a7f302aedfa9ad2ec63490adc2;p=p5sagit%2Fp5-mst-13.2.git The #7198 was a false alarm. p4raw-id: //depot/perl@7200 --- 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. */