Currently success return from SuspendThread() neither guarantees that thread is already suspended nor that it will be suspended at all. E. g, if SuspendThread is racing with thread normal exit, a SIGUSR1 could be queued to the thread for suspend but it reached exit_thread() and disabled signals for final exit before processing it.
Fixes GRIS game showing embedded Mono's garbage collector error on exit. Which error is due to the race between normal thread exit and GC cleanup. GC cleanup (as well as normal operation actually) first tries to suspend all the threads, failure here is fine. But when suspend succeeded it doesn't tolerate the failure to GetThreadContext() a bit later.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/5301
The installer of the Arcom Updater2561 tool expects oleaut32.dll to have a version resource that corresponds at least to updated Windows 7 SP1. Otherwise, it will corrupt the 32-bit oleaut32.dll by replacing it with its own bundled 64-bit version.
As Wine defaults to Windows 10, the oleaut32.dll version resource follows suit by reporting a Windows 10 version.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55876
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/5300