OSV 1.4.0 · github-reviewed · 修改于 2026-05-16 02:09
发布时间
2026-05-16 02:09
GitHub 审查时间
2026-05-16 02:09
NVD 发布时间
—
源文件
advisories/github-reviewed/2026/05/GHSA-vfvv-c25p-m7mm/GHSA-vfvv-c25p-m7mm.json
InlineVec::clear() and SerVec::clear() in rkyv were not panic-safe. Both functions iterate over their elements and call drop_in_place on each, updating self.len only after the loop. If an element's Drop implementation panics during the loop, self.len is left at its original value.
A subsequent invocation of clear() on the same container then re-visits the already-freed elements:
InlineVec::clear() is called again from InlineVec's own Drop implementation when the value is later dropped.SerVec::clear() is called again by SerVec::with_capacity() after the user closure returns.Box<T>DropBoth vulnerabilities are triggerable entirely from safe Rust via std::panic::catch_unwind and require no special privileges.