summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-06-04 09:56:25 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-06-04 09:56:25 +0000
commit4f127ee34b7eabf7c5816e973448ea5fe11c3310 (patch)
tree5b3442f1fa0f402c91b1f99f98c0bb7254b30d06 /file.c
parent14fa51aa0b8d8c6e8ab7210584ce254ec5ea2d50 (diff)
* io.c (rb_io_gets_m): set lastline ($_) even when read line is
nil. [ruby-dev:23663] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6427 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 a32a76dfad..435b623e3c 100644
--- a/file.c
+++ b/file.c
@@ -3970,7 +3970,7 @@ path_check_1(path)
#ifdef S_ISVTX
&& !(st.st_mode & S_ISVTX)
#endif
- ) {
+ && !access(p0, W_OK)) {
rb_warn("Insecure world writable dir %s, mode 0%o", p0, st.st_mode);
if (p) *p = '/';
return 0;