diff options
author | Artur Bergman <sky@nanisky.com> | 2003-02-02 23:38:40 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2003-02-02 23:38:40 +0000 |
commit | 3848b9623cf7b0bd4a28a02073a51953b168b7a6 (patch) | |
tree | e9eff7653c42c82a44862ff4200441a635942c49 /pp_hot.c | |
parent | 6bcd9130d180dcc5fa05ebcff16b88ac3339b31d (diff) | |
download | perl-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 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2818,7 +2818,7 @@ PP(pp_method) PP(pp_method_named) { dSP; - SV* sv = cSVOP->op_sv; + SV* sv = cSVOP_sv; U32 hash = SvUVX(sv); XPUSHs(method_common(sv, &hash)); |