mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-01-02 01:26:42 +01:00
Merge pull request #704 from JOE1994/0030-cache
Cache<K>: Send/Sync impls needs trait bounds on `K`
This commit is contained in:
19
crates/cache/RUSTSEC-0000-0000.md
vendored
Normal file
19
crates/cache/RUSTSEC-0000-0000.md
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
```toml
|
||||
[advisory]
|
||||
id = "RUSTSEC-0000-0000"
|
||||
package = "cache"
|
||||
date = "2020-11-24"
|
||||
url = "https://github.com/krl/cache/issues/1"
|
||||
categories = ["memory-corruption", "thread-safety"]
|
||||
|
||||
[versions]
|
||||
patched = []
|
||||
```
|
||||
|
||||
# Cache<K>: Send/Sync impls needs trait bounds on `K`
|
||||
|
||||
Affected versions of this crate unconditionally implement Send/Sync for `Cache<K>`.
|
||||
This allows users to insert `K` that is not Send or not Sync.
|
||||
|
||||
This allows users to create data races by using non-Send types like `Arc<Cell<T>>` or `Rc<T>` as `K` in `Cache<K>`. It is also possible to create data races by using types like `Cell<T>` or `RefCell<T>` (types that are `Send` but not `Sync`).
|
||||
Such data races can lead to memory corruption.
|
||||
Reference in New Issue
Block a user