mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-23 02:27:39 +03:00
504c378159
fix panic-safety in specialized Zip::next_back This was unsound since a panic in a.next_back() would result in the length not being updated which would then lead to the same element being revisited in the side-effect preserving code. fixes #86443