diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-14 22:31:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-14 22:31:14 +0000 |
commit | 0565a181ab920bd3cc76f2ab45d62768abfcaf8d (patch) | |
tree | 3bef6b0b82a543d722fd1ad8d544c18184053a02 /op.c | |
parent | 80002e0d612c016105daaa578514ef1b726842f4 (diff) | |
download | perl-0565a181ab920bd3cc76f2ab45d62768abfcaf8d.tar.gz |
Mark all places where perl needs to look at a possibly-freed scalar
with a macro SvIS_FREED(sv)
p4raw-id: //depot/perl@26132
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -407,7 +407,7 @@ Perl_op_clear(pTHX_ OP *o) clear_pmop: { HV * const pmstash = PmopSTASH(cPMOPo); - if (pmstash && SvREFCNT(pmstash)) { + if (pmstash && !SvIS_FREED(pmstash)) { MAGIC * const mg = mg_find((SV*)pmstash, PERL_MAGIC_symtab); if (mg) { PMOP *pmop = (PMOP*) mg->mg_obj; |