diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-03-25 01:23:03 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-03-25 01:23:03 +0900 |
commit | c7d668801bd27f8245a15311da4e8e859ba28dec (patch) | |
tree | 379fa7f003b05953896c54c44ca10b42f7ad72fc /test/ruby | |
parent | 1b3339528c0804aa0e673bd3f15be8b087d17bd8 (diff) | |
download | ruby-c7d668801bd27f8245a15311da4e8e859ba28dec.tar.gz |
Fixed crash when argument array is modified
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_dir.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ruby/test_dir.rb b/test/ruby/test_dir.rb index bab23302f7..13a0c31257 100644 --- a/test/ruby/test_dir.rb +++ b/test/ruby/test_dir.rb @@ -517,4 +517,16 @@ class TestDir < Test::Unit::TestCase assert_equal([*"a".."z"], list) end; end if defined?(Process::RLIMIT_NOFILE) + + def test_glob_array_with_destructive_element + args = Array.new(100, "") + pat = Struct.new(:ary).new(args) + args.push(pat, *Array.new(100) {"."*40}) + def pat.to_path + ary.clear + GC.start + "" + end + assert_empty(Dir.glob(args)) + end end |