3 Jun
2025
3 Jun
'25
10:16 a.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/threadpool.c:
assert( this->u.wait.bucket );
- same_handle = this->u.wait.handle == handle; + if (!(same_handle = NT_SUCCESS(NtCompareObjects( this->u.wait.handle, handle ))))
Same object does not mean same handle. Let's keep this as is. ```suggestion:-0+0 same_handle = this->u.wait.handle == handle; if (!same_handle) ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8191#note_105227