summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-28 14:23:33 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-28 14:23:33 +0000
commit993a1b3626ab6000b9444712f555645160d8abe8 (patch)
tree92794226e7672713346ac7cdbbfca1472b19f252 /file.c
parentd0b9aa277f4991b9f1a4895cbcec177ae8cd6404 (diff)
downloadruby-993a1b3626ab6000b9444712f555645160d8abe8.tar.gz
ruby-993a1b3626ab6000b9444712f555645160d8abe8.tar.xz
ruby-993a1b3626ab6000b9444712f555645160d8abe8.zip
* gc.c (gc_mark): explicitly check mark recursion levels, instead
of unreliable stack length. * file.c (path_check_1): honor sticky bits always. [ruby-talk:86273] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 84eb47f50..18e2735d5 100644
--- a/file.c
+++ b/file.c
@@ -2653,7 +2653,7 @@ path_check_1(path)
#endif
if (stat(p0, &st) == 0 && S_ISDIR(st.st_mode) && (st.st_mode & S_IWOTH)
#ifdef S_ISVTX
- && (!p || !(st.st_mode & S_ISVTX))
+ && !(st.st_mode & S_ISVTX)
#endif
) {
rb_warn("Insecure world writable dir %s, mode 0%o", p0, st.st_mode);