OSV 1.4.0 · github-reviewed · 修改于 2021-08-25 02:24
发布时间
2021-08-26 04:59
GitHub 审查时间
2021-08-10 05:35
NVD 发布时间
2021-08-08 14:15
源文件
advisories/github-reviewed/2021/08/GHSA-rpxm-vmr7-5f5f/GHSA-rpxm-vmr7-5f5f.json
Affected versions of this crate unconditionally implement Send/Sync for ConVec<T>.
This allows users to insert T that is not Send or not Sync.
This allows users to create data races by using non-Send types like Arc<Cell<_>> or Rc<_> as T in ConVec<T>. It is also possible to create data races by using types like Cell<_> or RefCell<_> as T (types that are Send but not Sync).
Such data races can lead to memory corruption.