mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-01-23 11:49:05 +01:00
Report 0125-multiqueue to RustSec
This commit is contained in:
17
crates/multiqueue/RUSTSEC-0000-0000.md
Normal file
17
crates/multiqueue/RUSTSEC-0000-0000.md
Normal file
@@ -0,0 +1,17 @@
|
||||
```toml
|
||||
[advisory]
|
||||
id = "RUSTSEC-0000-0000"
|
||||
package = "multiqueue"
|
||||
date = "2020-12-25"
|
||||
url = "https://github.com/schets/multiqueue/issues/31"
|
||||
categories = ["memory-corruption", "thread-safety"]
|
||||
|
||||
[versions]
|
||||
patched = []
|
||||
```
|
||||
|
||||
# Queues allow non-Send types to be sent to other threads, allowing data races
|
||||
|
||||
Affected versions of this crate unconditionally implemented `Send` for types used in queue implementations (`InnerSend<RW, T>`, `InnerRecv<RW, T>`, `FutInnerSend<RW, T>`, `FutInnerRecv<RW, T>`).
|
||||
|
||||
This allows users to send non-Send types to other threads, which can lead to data race bugs or other undefined behavior.
|
||||
Reference in New Issue
Block a user