From: Dave Mitchell Date: Mon, 19 Mar 2007 00:00:46 +0000 (+0000) Subject: minor code simplification made possible by change #30627 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b01e650a9b9106d610923bb01ce97b6e191ca8ed;p=p5sagit%2Fp5-mst-13.2.git minor code simplification made possible by change #30627 p4raw-link: @30627 on //depot/perl: e7cbf6c66722616e50aa4cda71d48adf3ae55201 p4raw-id: //depot/perl@30628 --- diff --git a/mg.c b/mg.c index 6966f9c..c603073 100644 --- a/mg.c +++ b/mg.c @@ -2002,13 +2002,11 @@ Perl_magic_settaint(pTHX_ SV *sv, MAGIC *mg) { dVAR; PERL_UNUSED_ARG(sv); - /* update taint status unless we're restoring at scope exit */ - if (PL_localizing != 2) { - if (PL_tainted) - mg->mg_len |= 1; - else - mg->mg_len &= ~1; - } + /* update taint status */ + if (PL_tainted) + mg->mg_len |= 1; + else + mg->mg_len &= ~1; return 0; }