Worrying about insecure directories now is a bit too late.
Jarkko Hietaniemi [Thu, 28 Jun 2001 23:14:53 +0000 (23:14 +0000)]
p4raw-id: //depot/perl@11013

lib/File/Find/taint.t

index f27c42c..cdd75de 100644 (file)
@@ -25,15 +25,6 @@ use File::Find;
 use File::Spec;
 use Cwd;
 
-# Remove insecure directories from PATH
-my @path;
-my $sep = ($^O eq 'MSWin32') ? ';' : ':';
-foreach my $dir (split(/$sep/,$ENV{'PATH'}))
- {
-  push(@path,$dir) unless -w $dir;
- }
-$ENV{'PATH'} = join($sep,@path);
-
 my $NonTaintedCwd = $^O eq 'MSWin32' || $^O eq 'cygwin';
 
 cleanup();