diff options
author | Stephen McCamant <smcc@mit.edu> | 2005-05-21 14:52:31 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-01 08:18:46 +0000 |
commit | 8f476eeebdd5d13ca310ece2133d68d90cd3e69c (patch) | |
tree | fb03d5c98dbfd3695910a188d2a4814574eda5c0 | |
parent | c0939ceec1b3e902edf1d9a47f8540b3ab3f7d61 (diff) | |
download | perl-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 */ |