Skip to content

Tokio v1.44.2

Latest
Compare
Choose a tag to compare
@carllerche carllerche released this 05 Apr 15:19
· 26 commits to master since this release
ec4b1d7

This release fixes a soundness issue in the broadcast channel. The channel
accepts values that are Send but !Sync. Previously, the channel called
clone() on these values without synchronizing. This release fixes the channel
by synchronizing calls to .clone() (Thanks Austin Bonander for finding and
reporting the issue).

Fixed

  • sync: synchronize clone() call in broadcast channel (#7232)