ActionsLike0
Bug #7383
closedUse stricter cache check in load.c
Description
rb_ary_shared_with_p does not react when #shift or #pop is called on original array.
This patch introduce rb_ary_dup_of_p , which makes more adequate check for duplicate
of array.
https://github.com/ruby/ruby/pull/216
https://github.com/ruby/ruby/pull/216.patch
Files
Added by drbrain (Eric Hodel) about 12 years ago
-
Backport r39213 from trunk [ruby-trunk - Bug #7383]
-
lib/rubygems.rb: Return BINARY strings from Gem.gzip and Gem.gunzip.
Fixes intermittent test failures. RubyGems issue #450 by Jeremey
Kemper. -
test/rubygems/test_gem.rb: Test for the above.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@39229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
ActionsLike0
Fix cache validity check of require
array.c (rb_ary_shared_with_p): fix cache validity check.
If #pop or #shift has been called against $: or $", the array will
be still shared with the snapshot. We check array length for cache
validity.
[ruby-core:49518] [Bug #7383]
test/ruby/test_require.rb
(TestRequire#test_require_with_array_pop,
TestRequire#test_require_with_array_shift): add tests for above.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e