mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-02-13 21:18:11 +01:00
765 B
765 B
[advisory]
id = "RUSTSEC-2022-0008"
package = "windows"
date = "2022-01-02"
url = "https://github.com/microsoft/windows-rs/issues/1409"
categories = ["memory-corruption", "thread-safety"]
keywords = []
informational = "unsound"
[versions]
patched = [">= 0.32.0"]
unaffected = ["< 0.1.2"]
[affected]
os = ["windows"]
Delegate functions are missing Send bound
Affected versions of this crate did not require event handlers to have Send bound despite there being no guarantee of them being called on any particular thread, which can potentially lead to data races and undefined behavior.
The flaw was corrected in commit afe3252 by adding Send bounds.