Change 33560 by [EMAIL PROTECTED] on 2008/03/25 09:52:27

        Use sv_setpvs() like a few lines before since change #33557

Affected files ...

... //depot/perl/pp.c#625 edit

Differences ...

==== //depot/perl/pp.c#625 (text) ====
Index: perl/pp.c
--- perl/pp.c#624~33557~        2008-03-25 02:17:28.000000000 -0700
+++ perl/pp.c   2008-03-25 02:52:27.000000000 -0700
@@ -3199,7 +3199,7 @@
                else if (SvOK(sv))      /* is it defined ? */
                    (void)SvPOK_only_UTF8(sv);
                else
-                   sv_setpvn(sv,"",0); /* avoid lexical reincarnation */
+                   sv_setpvs(sv, ""); /* avoid lexical reincarnation */
            }
 
            if (SvTYPE(TARG) < SVt_PVLV) {
End of Patch.

Reply via email to