13 Feb
2026
13 Feb
'26
7:55 p.m.
Rémi Bernon (@rbernon) commented about dlls/win32u/sysparams.c:
{ ULONG context;
- if (process && process != GetCurrentProcess()) + if (process && !(process == GetCurrentProcess() || !NtCompareObjects( GetCurrentProcess(), process ))) It's maybe a matter of taste but wouldn't `if (process && process != GetCurrentProcess() && NtCompareObjects( GetCurrentProcess(), process ))` be more readable?
Same for the other patch. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10102#note_129651