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) ```