From: Nicholas Clark Date: Thu, 25 Jan 2007 11:41:13 +0000 (+0000) Subject: Change 28058 hadn't been tested with -DPERL_CREATE_GVSV X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b5c2dcb896d432b12ffe33fec8f2d720824f50e6;p=p5sagit%2Fp5-mst-13.2.git Change 28058 hadn't been tested with -DPERL_CREATE_GVSV p4raw-id: //depot/perl@29970 --- diff --git a/gv.c b/gv.c index 9c33b42..78e528f 100644 --- a/gv.c +++ b/gv.c @@ -171,7 +171,7 @@ Perl_newGP(pTHX_ GV *const gv) Newxz(gp, 1, GP); #ifndef PERL_DONT_CREATE_GVSV - gp->gv_sv = newSV(0); + gp->gp_sv = newSV(0); #endif gp->gp_line = PL_curcop ? CopLINE(PL_curcop) : 0;