mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 03:37:26 +03:00
48c4afbf9c
Prevent String::retain from creating non-utf8 strings when abusing panic Fixes #78498 The idea is the same as `Vec::drain`, set the len to 0 so that nobody can observe the broken invariant if it escapes the function (in this case if `f` panics)