projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e7cbf6c
)
minor code simplification made possible by change #30627
Dave Mitchell [Mon, 19 Mar 2007 00:00:46 +0000 (
00:00
+0000)]
p4raw-link: @30627 on //depot/perl:
e7cbf6c66722616e50aa4cda71d48adf3ae55201
p4raw-id: //depot/perl@30628
mg.c
patch
|
blob
|
blame
|
history
diff --git
a/mg.c
b/mg.c
index
6966f9c
..
c603073
100644
(file)
--- 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;
}