Delegate functions are missing `Send` bound
Critical severity
GitHub Reviewed
Published
Jun 17, 2022
to the GitHub Advisory Database
•
Updated Jan 12, 2023
Description
Published to the GitHub Advisory Database
Jun 17, 2022
Reviewed
Jun 17, 2022
Last updated
Jan 12, 2023
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.References