ActionsLike0
Bug #17739
closedArray#sort! changes the order even if the receiver raises FrozenError in given block
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin20]
Description
I think this is a similar issue of https://bugs.ruby-lang.org/issues/17736
array = [1, 2, 3, 4, 5]
begin
array.sort! do |a, b|
array.freeze if a == 3
1
end
rescue => err
p err #=> #<FrozenError: can't modify frozen Array: [5, 4, 3, 2, 1]>
end
p array #=> [5, 4, 3, 2, 1]
array = [1, 2, 3, 4, 5]
array.sort! do |a, b|
break if a == 3
1
end
p array #=> [3, 4, 2, 1, 5]
Array#sort! raises a FrozenError as expected, but the order is changed. I would expect the order is kept after frozen.
Added by jeremyevans (Jeremy Evans) almost 4 years ago
Added by nobu (Nobuyoshi Nakada) almost 4 years ago
Refined portability of test for [Bug #17739]
The order of arguments to callback of qsort is not defined.
That means a
may not be 3 at all.
ActionsLike0
Do not allow array modifications after freeze inside sort!
If freezing an array inside sort!, previously the array could be
modified after the freeze. This checks whether the receiver is
frozen after every yield and potential call to #> or #<,
preventing modifications if the receiver is frozen inside the
block or by the #> or #< call.
Fixes [Bug #17739]