Change 27455 by [EMAIL PROTECTED] on 2006/03/09 22:50:23

        Remove two NEWSV()s in the non-ithread dump code that got missed.

Affected files ...

... //depot/perl/dump.c#215 edit

Differences ...

==== //depot/perl/dump.c#215 (text) ====
Index: perl/dump.c
--- perl/dump.c#214~27434~      2006-03-09 04:17:41.000000000 -0800
+++ perl/dump.c 2006-03-09 14:50:23.000000000 -0800
@@ -2536,8 +2536,8 @@
        S_xmldump_attr(aTHX_ level, file, "padix=\"%" IVdf "\"", 
(IV)cPADOPo->op_padix);
 #else
        if (cSVOPo->op_sv) {
-           SV *tmpsv1 = NEWSV(0,0);
-           SV *tmpsv2 = NEWSV(0,0);
+           SV *tmpsv1 = newSV(0);
+           SV *tmpsv2 = newSV(0);
            char *s;
            STRLEN len;
            SvUTF8_on(tmpsv1);
End of Patch.

Reply via email to