From: Gurusamy Sarathy Date: Thu, 25 Jun 1998 23:24:53 +0000 (+0000) Subject: avoid warning with -P switch X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=63bfd3dbc295505ea40d413cbda7eb621b2d79e1;p=p5sagit%2Fp5-mst-13.2.git avoid warning with -P switch p4raw-id: //depot/perl@1218 --- diff --git a/perl.c b/perl.c index 0cacfc9..6930a4f 100644 --- a/perl.c +++ b/perl.c @@ -1911,7 +1911,7 @@ open_script(char *scriptname, bool dosearch, SV *sv, int *fdscript) } else if (preprocess) { char *cpp_cfg = CPPSTDIN; - SV *cpp = NEWSV(0,0); + SV *cpp = newSVpv("",0); SV *cmd = NEWSV(0,0); if (strEQ(cpp_cfg, "cppstdin"))