diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-11-23 13:03:06 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-24 01:45:29 -0800 |
commit | b4cc4d79bdf5cb925f73a41f253ddedf9c846c5b (patch) | |
tree | b3c7d65925d2977d222db424a55d9e3c55fb4954 /doop.c | |
parent | b86ef4ceaab5d9a6fca3fcfff7b5c2e5228d2bf0 (diff) | |
download | perl-b4cc4d79bdf5cb925f73a41f253ddedf9c846c5b.tar.gz |
Call FETCH once for $tied_ref =~ y/a/b/
Diffstat (limited to 'doop.c')
-rw-r--r-- | doop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -642,7 +642,7 @@ Perl_do_trans(pTHX_ SV *sv) return 0; if (!(PL_op->op_private & OPpTRANS_IDENTICAL)) { if (!SvPOKp(sv)) - (void)SvPV_force(sv, len); + (void)SvPV_force_nomg(sv, len); (void)SvPOK_only_UTF8(sv); } |