summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen McCamant <smcc@mit.edu>2005-05-21 14:52:31 -0700
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-01 08:18:46 +0000
commit8f476eeebdd5d13ca310ece2133d68d90cd3e69c (patch)
treefb03d5c98dbfd3695910a188d2a4814574eda5c0
parentc0939ceec1b3e902edf1d9a47f8540b3ab3f7d61 (diff)
downloadperl-8f476eeebdd5d13ca310ece2133d68d90cd3e69c.tar.gz
Re: [patch] teach B::Concise to see XS code
Message-ID: <17040.4111.265639.434150@apocalypse.OCF.Berkeley.EDU> Correctly nullify CvSTART when undef'ing a CV p4raw-id: //depot/perl@24654
-rw-r--r--op.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/op.c b/op.c
index 20661f8a98..949d8f427e 100644
--- a/op.c
+++ b/op.c
@@ -4062,6 +4062,7 @@ Perl_cv_undef(pTHX_ CV *cv)
op_free(CvROOT(cv));
CvROOT(cv) = Nullop;
+ CvSTART(cv) = Nullop;
LEAVE;
}
SvPOK_off((SV*)cv); /* forget prototype */