diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2019-10-01 10:58:14 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2019-10-01 10:58:14 +0000 |
commit | 02ea1fdfc70b01189574a4a640eec3c9c81d2417 (patch) | |
tree | 110dc9d90d966e1cd2238c3140a74bdacdc13c53 | |
parent | 6285b2359975da981843ed32a11c0b283152daf4 (diff) | |
download | ruby-02ea1fdfc70b01189574a4a640eec3c9c81d2417.tar.gz |
merge revision(s) a0a2640b398cffd351f87d3f6243103add66575b
Fix for wrong fnmatch patttern
* dir.c (file_s_fnmatch): ensure that pattern does not contain a
NUL character. https://hackerone.com/reports/449617
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@67809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | dir.c | 2 | ||||
-rw-r--r-- | test/ruby/test_fnmatch.rb | 6 | ||||
-rw-r--r-- | version.h | 8 |
3 files changed, 11 insertions, 5 deletions
@@ -3020,7 +3020,7 @@ file_s_fnmatch(int argc, VALUE *argv, VALUE obj) else flags = 0; - StringValue(pattern); + StringValueCStr(pattern); FilePathStringValue(path); if (flags & FNM_EXTGLOB) { diff --git a/test/ruby/test_fnmatch.rb b/test/ruby/test_fnmatch.rb index ca01a28698..30250b5a19 100644 --- a/test/ruby/test_fnmatch.rb +++ b/test/ruby/test_fnmatch.rb @@ -129,4 +129,10 @@ class TestFnmatch < Test::Unit::TestCase assert_file.fnmatch("[a-\u3042]*", "\u3042") assert_file.not_fnmatch("[a-\u3042]*", "\u3043") end + + def test_nullchar + assert_raise(ArgumentError) { + File.fnmatch("a\0z", "a") + } + end end @@ -1,10 +1,10 @@ #define RUBY_VERSION "2.5.7" -#define RUBY_RELEASE_DATE "2019-09-02" -#define RUBY_PATCHLEVEL 202 +#define RUBY_RELEASE_DATE "2019-10-01" +#define RUBY_PATCHLEVEL 203 #define RUBY_RELEASE_YEAR 2019 -#define RUBY_RELEASE_MONTH 9 -#define RUBY_RELEASE_DAY 2 +#define RUBY_RELEASE_MONTH 10 +#define RUBY_RELEASE_DAY 1 #include "ruby/version.h" |