RUSTSEC-2022-0021
SegQueue
creates zero value of any type
- Reported
- Issued
- Package
- crossbeam-queue (crates.io)
- Type
- INFO Unsound
- Aliases
- References
- Patched
-
>=0.2.3
Description
Affected versions of this crate called mem::zeroed()
to create values of a user-supplied type T
.
This is unsound e.g. if T
is a reference type (which must be non-null).
The flaw was corrected by avoiding the use of mem::zeroed()
, using MaybeUninit
instead.
Advisory available under CC0-1.0 license.