Fix missing detached flag in Process::Handle moves

This is why C++'s move semantics are footguns. The result of this was
that grouped plugins would no longer be detached when they were
moved (in this case, into the group connect handler closure). Which in
turn caused those plugins to block until the plugin host process
terminated, which thus ended up blocking the host indefinitely.
This commit is contained in:
Robbert van der Helm
2023-02-21 15:01:01 +01:00
parent 4ea0530a37
commit ee971f610e
2 changed files with 7 additions and 1 deletions
+4
View File
@@ -10,6 +10,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).
### Fixed
- Fixed a regression from yabridge 4.0.0 where plugin groups would not exit
correctly. When removing a plugin instance that was part of a plugin group, it
would block until the group host process had exited, causing the host to
stall.
- Configuring the Meson build now works correctly on Wine 8.0 final. Meson's
version comparison function considers `8.0` to be a lower version than
`8.0rc2`.