aboutsummaryrefslogtreecommitdiffstats
path: root/lib/find.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-13 16:03:15 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-13 16:03:15 +0000
commit829a44822d5e3fd4457f44c401d82eb14c52c8e9 (patch)
tree769c0b1007ca976ec66e03576e4abf78dcda287f /lib/find.rb
parentbe1de4f8db9626be0341d588b6b36aaae06a52d2 (diff)
downloadruby-829a44822d5e3fd4457f44c401d82eb14c52c8e9.tar.gz
* re.c (KR_REHASH): wrong hash value on sizeof(long) > sizeof(int).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5693 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/find.rb')
-rw-r--r--lib/find.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/find.rb b/lib/find.rb
index e94d5c2c70..52efde81fd 100644
--- a/lib/find.rb
+++ b/lib/find.rb
@@ -36,8 +36,8 @@ module Find
paths.collect!{|d| d.dup}
while file = paths.shift
catch(:prune) do
- yield file.dup
- file.untaint
+ next unless File.exist? file
+ yield file.dup.taint
begin
if File.lstat(file).directory? then
d = Dir.open(file)
@@ -51,7 +51,7 @@ module Find
else
f = File.join(file, f)
end
- paths.unshift f
+ paths.unshift f.untaint
end
ensure
d.close