diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-07-07 14:47:51 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-07-07 14:47:51 +0000 |
commit | 27cc343c4fb8030e5afb7c3824647d9e5e1d08d6 (patch) | |
tree | 3349f5c3d5c7e047ae89b95601b0c0d5ac745e02 /mg.c | |
parent | bd5c3bd9b8ed3edb9439b1889b9dae06dd1644d4 (diff) | |
download | perl-27cc343c4fb8030e5afb7c3824647d9e5e1d08d6.tar.gz |
more taint fallout from change 24943
p4raw-id: //depot/perl@25094
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1913,7 +1913,7 @@ int Perl_magic_gettaint(pTHX_ SV *sv, MAGIC *mg) { PERL_UNUSED_ARG(sv); - TAINT_IF(mg->mg_len & 1); + TAINT_IF((PL_localizing != 1) && (mg->mg_len & 1)); return 0; } |