OSV 1.4.0 · github-reviewed · 修改于 2021-08-25 03:08
发布时间
2021-08-26 04:57
GitHub 审查时间
2021-08-19 04:35
NVD 发布时间
2021-08-08 14:15
源文件
advisories/github-reviewed/2021/08/GHSA-fvhr-7j8m-3cvc/GHSA-fvhr-7j8m-3cvc.json
The appendix crate implements a key-value mapping data structure called
Index<K, V> that is stored on disk. The crate allows for any type to inhabit
the generic K and V type parameters and implements Send and Sync for them
unconditionally.
Using a type that is not marked as Send or Sync with Index can allow it
to be used across multiple threads leading to data races. Additionally using
reference types for the keys or values will lead to the segmentation faults
in the crate's code.