diff options
author | Christian Burger <burger@terra.mpikg-teltow.mpg.de> | 1998-11-01 23:28:41 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-12 12:31:21 +0000 |
commit | 49bb67615f25aa24217b077bcddd9be35d8b60e1 (patch) | |
tree | 6c793382920e6cf852b0111613f1de81b09216f6 /pod/perlop.pod | |
parent | 0b71908da034f769d0ff3a5ad1d1c922d9be3fb8 (diff) | |
download | perl-49bb67615f25aa24217b077bcddd9be35d8b60e1.tar.gz |
Document that qw() taints.
To: perlbug@perl.com
Subject: taint problems
Message-Id: <199811012128.WAA23381@terra.mpikg-teltow.mpg.de>
p4raw-id: //depot/cfgperl@2465
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 857b951486..5a85e7f648 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1057,6 +1057,10 @@ comments into a multi-line C<qw>-string. For this reason the C<-w> switch produce warnings if the STRING contains the "," or the "#" character. +Note that under use L<locale> qw() taints because the definition of +whitespace is tainted. See L<perlsec> for more information about +tainting and L<perllocale> for more information about locales. + =item s/PATTERN/REPLACEMENT/egimosx Searches a string for a pattern, and if found, replaces that pattern |