summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-11-23 20:32:49 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-11-24 07:35:50 -0800
commit8daf8916b49984fc91791e8265cd7e1ca36b836c (patch)
tree286458b2a1b057a66edd69ad1913ed72dabc7fb3 /op.c
parent8e3171984bd6a5f4edf04ec5b91032d053bdd8a5 (diff)
downloadperl-8daf8916b49984fc91791e8265cd7e1ca36b836c.tar.gz
Stop ignored :lvalue warning from leaking CVs
When newMYSUB and newATTRSUB are called, PL_compcv has an unclaimed reference count, so any code that croaks must decrement the reference count or make arrangements for such to happen.
Diffstat (limited to 'op.c')
-rw-r--r--op.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/op.c b/op.c
index 1b4cf8d805..aedf54f536 100644
--- a/op.c
+++ b/op.c
@@ -7038,7 +7038,12 @@ Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block)
const bool pureperl = !CvISXSUB(cv) && CvROOT(cv);
if (CvLVALUE(compcv) && ! CvLVALUE(cv) && pureperl
&& ckWARN(WARN_MISC))
+ {
+ /* protect against fatal warnings leaking compcv */
+ SAVEFREESV(PL_compcv);
Perl_warner(aTHX_ packWARN(WARN_MISC), "lvalue attribute ignored after the subroutine has been defined");
+ SvREFCNT_inc_simple_void_NN(PL_compcv);
+ }
CvFLAGS(cv) |=
(CvFLAGS(compcv) & CVf_BUILTIN_ATTRS
& ~(CVf_LVALUE * pureperl));
@@ -7444,7 +7449,12 @@ Perl_newATTRSUB_flags(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs,
const bool pureperl = !CvISXSUB(cv) && CvROOT(cv);
if (CvLVALUE(PL_compcv) && ! CvLVALUE(cv) && pureperl
&& ckWARN(WARN_MISC))
+ {
+ /* protect against fatal warnings leaking compcv */
+ SAVEFREESV(PL_compcv);
Perl_warner(aTHX_ packWARN(WARN_MISC), "lvalue attribute ignored after the subroutine has been defined");
+ SvREFCNT_inc_simple_void_NN(PL_compcv);
+ }
CvFLAGS(cv) |=
(CvFLAGS(PL_compcv) & CVf_BUILTIN_ATTRS
& ~(CVf_LVALUE * pureperl));