repo.or.cz
/
msysgit
/
historical-msysgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of http://repo.or.cz/r/msysgit into devel
[msysgit/historical-msysgit.git]
/
lib
/
perl5
/
5.6.1
/
tainted.pl
blob
6e24867a83dd43570a7d21ed3827eb39f28f2a6f
1
# This subroutine returns true if its argument is tainted, false otherwise.
2
3
sub
tainted
{
4
local
($
@
);
5
eval
{
kill
0
*
$_
[
0
] };
6
$
@
=~
/^Insecure/
;
7
}
8
9
1
;