diff --git a/crates/arenavec/RUSTSEC-0000-0000.md b/crates/arenavec/RUSTSEC-0000-0000.md index e75df21..f71a26a 100644 --- a/crates/arenavec/RUSTSEC-0000-0000.md +++ b/crates/arenavec/RUSTSEC-0000-0000.md @@ -10,11 +10,11 @@ categories = ["memory-corruption"] patched = [] ``` -# panic safety: potential double drop or uninitialized drop of T +# panic safety: double drop or uninitialized drop of T upon panic Affected versions of this crate did not guard against potential panics that may happen from user-provided functions `T::default()` and `T::drop()`. Panic within `T::default()` leads to dropping uninitialized `T`, when it is invoked from `common::Slice::::new()`. Panic within `T::drop()` leads to double drop of `T`, when it is invoked either from `common::SliceVec::::resize_with()` or `common::SliceVec::::resize()` -Either case causes memory corruption in the heap memory. \ No newline at end of file +Either case causes memory corruption in the heap memory.