diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-10 06:26:39 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-11-11 16:13:20 -0800 |
commit | 7004ee4937ce593571fd91b83a7a6e35906e5a05 (patch) | |
tree | 6910bf22bb41270dc2ebbf6fd34145f26cb9cbf0 /op.c | |
parent | 4571f4a728fcf420c04fe45a1566d6d2f38d76ae (diff) | |
download | perl-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; } |