4.10.1 - Elide main queue check in Linux readpassphrase() implementation
What's Changed
Elide main queue check in Linux readpassphrase() implementation by @gwynne in #185
In an
async
world, the check for running on the main queue inlinux_readpassphrase()
is hopelessly wrong. Since it’s a violation of the API contract to call this method from multiple threads, we just remove the bad assertion and let misuse fail out the same way the “real” API would.
This patch was released by @gwynne
Full Changelog: 4.10.0...4.10.1