summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-11-10 06:26:39 -0800
committerFather Chrysostomos <sprout@cpan.org>2013-11-11 16:13:20 -0800
commit7004ee4937ce593571fd91b83a7a6e35906e5a05 (patch)
tree6910bf22bb41270dc2ebbf6fd34145f26cb9cbf0 /op.c
parent4571f4a728fcf420c04fe45a1566d6d2f38d76ae (diff)
downloadperl-7004ee4937ce593571fd91b83a7a6e35906e5a05.tar.gz
In newXS, clear glob slot before lowering refcount.
Otherwise, when newXS redefines a sub, the previous sub’s DESTROY can see the same sub still in the typeglob, but without a reference count, so *typeglob = sub {} frees the sub currently in $_[0]. $ perl5.18.1 -le ' sub re::regmust{} bless \&re::regmust; DESTROY { print "before: $_[0]"; *re::regmust=sub{}; print "after: $_[0]" } require re; ' before: main=CODE(0x7ff7eb02d6d8) before: main=CODE(0x7ff7eb02d6d8) after: main=CODE(0x7ff7eb02d6d8) after: UNKNOWN(0x7ff7eb02d6d8)
Diffstat (limited to 'op.c')
-rw-r--r--op.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/op.c b/op.c
index bf7d4eb4e4..6eee9e052a 100644
--- a/op.c
+++ b/op.c
@@ -8140,6 +8140,7 @@ Perl_newXS_len_flags(pTHX_ const char *name, STRLEN len,
),
cv, const_svp);
}
+ GvCV_set(gv,NULL);
SvREFCNT_dec_NN(cv);
cv = NULL;
}