diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-24 04:34:26 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-24 04:34:26 +0000 |
commit | 4ff5e66cd4f6dfa89f81219b194512eefead18bd (patch) | |
tree | a7ed03dd3f6442635f694c4367bcd94be57f6dbd /file.c | |
parent | b2b6240416862f977e69e84d4137ba4a13ab5e27 (diff) | |
download | ruby-4ff5e66cd4f6dfa89f81219b194512eefead18bd.tar.gz ruby-4ff5e66cd4f6dfa89f81219b194512eefead18bd.tar.xz ruby-4ff5e66cd4f6dfa89f81219b194512eefead18bd.zip |
2000-05-24
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2033,6 +2033,7 @@ rb_find_file(file) volatile VALUE vpath; VALUE fname; char *path; + struct stat st; #if defined(__MACOS__) || defined(riscos) if (is_macos_native_path(file)) { @@ -2091,7 +2092,11 @@ rb_find_file(file) path = 0; } - return dln_find_file(file, path); + path = dln_find_file(file, path); + if (stat(path, &st) == 0) { + return path; + } + return 0; } void |