diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-02 08:05:59 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-02 08:05:59 +0000 |
| commit | 5b48235e9c77c2976f9dcb6545157d90a541b552 (patch) | |
| tree | 456267877ddc5a1453a615ee7d637c446b26e4bd | |
| parent | 2001c34b9200e8aa8ef5d8018287b13ee9c2c9db (diff) | |
| download | ruby-5b48235e9c77c2976f9dcb6545157d90a541b552.tar.gz ruby-5b48235e9c77c2976f9dcb6545157d90a541b552.tar.xz ruby-5b48235e9c77c2976f9dcb6545157d90a541b552.zip | |
* file.c (rb_find_file_ext): should not be infected from other
load paths.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | file.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Mon Feb 2 17:05:55 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * file.c (rb_find_file_ext): should not be infected from other + load paths. + Mon Feb 2 16:33:06 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * dir.c (dir_s_home): new method. [ruby-core:21454] @@ -4566,6 +4566,7 @@ rb_find_file_ext(VALUE *filep, const char *const *ext) *filep = tmp; return j+1; } + FL_UNSET(tmp, FL_TAINT | FL_UNTRUSTED); } rb_str_set_len(fname, fnlen); } |
