Re: unicode support and perl [ID 20000901.097]
authorSpider Boardman <spider@orb.nashua.nh.us>
Fri, 15 Sep 2000 16:25:30 +0000 (12:25 -0400)
committerNick Ing-Simmons <nik@tiuk.ti.com>
Sat, 30 Sep 2000 12:49:35 +0000 (12:49 +0000)
Message-Id: <200009152025.QAA18540@Orb.Nashua.NH.US>

p4raw-id: //depot/perl@7099

pp_hot.c

index ba81805..17710d5 100644 (file)
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -163,6 +163,10 @@ PP(pp_concat)
                /* Take a copy since we're about to overwrite TARG */
                olds = s = (U8*)savepvn((char*)s, len);
            }
+           if (SvGMAGICAL(left))
+               mg_get(left);
+           else if (!SvOK(left) && SvTYPE(left) <= SVt_PVMG)
+               sv_setpv(left, "");     /* Suppress warning. */
             l = (U8*)SvPV(left, targlen);
             if (TARG != left)
                 sv_setpvn(TARG, (char*)l, targlen);