summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorArtur Bergman <sky@nanisky.com>2003-02-02 23:38:40 +0000
committerArtur Bergman <sky@nanisky.com>2003-02-02 23:38:40 +0000
commit3848b9623cf7b0bd4a28a02073a51953b168b7a6 (patch)
treee9eff7653c42c82a44862ff4200441a635942c49 /op.c
parent6bcd9130d180dcc5fa05ebcff16b88ac3339b31d (diff)
downloadperl-3848b9623cf7b0bd4a28a02073a51953b168b7a6.tar.gz
Move SvPVIV out of ->op_sv of METHOD_NAMED into the pad, fixes
threading issue. Should perhaps be a PVOP to save memory, but then we have nowhere to store the hash of the function! p4raw-id: //depot/perl@18640
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 41bc9d0a46..610c0e5a22 100644
--- a/op.c
+++ b/op.c
@@ -6080,6 +6080,7 @@ Perl_peep(pTHX_ register OP *o)
if (cSVOPo->op_private & OPpCONST_STRICT)
no_bareword_allowed(o);
#ifdef USE_ITHREADS
+ case OP_METHOD_NAMED:
/* Relocate sv to the pad for thread safety.
* Despite being a "constant", the SV is written to,
* for reference counts, sv_upgrade() etc. */