The #7198 was a false alarm.
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 11 Oct 2000 00:40:30 +0000 (00:40 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 11 Oct 2000 00:40:30 +0000 (00:40 +0000)
p4raw-id: //depot/perl@7200

pp_hot.c

index c49e929..400350d 100644 (file)
--- 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. */