From: Nicholas Clark <nick@ccl4.org>
Date: Thu, 9 Mar 2006 22:50:23 +0000 (+0000)
Subject: Remove two NEWSV()s in the non-ithread dump code that got missed.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ef2570c41ffc304e9725d0b3f9f07f3c6913340f;p=p5sagit%2Fp5-mst-13.2.git

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

p4raw-id: //depot/perl@27455
---

diff --git a/dump.c b/dump.c
index ad64190..650c1ab 100644
--- a/dump.c
+++ b/dump.c
@@ -2536,8 +2536,8 @@ Perl_do_op_xmldump(pTHX_ I32 level, PerlIO *file, const OP *o)
 	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);