May 18, 2026
10:14 a.m.
The following code crashes wine but seems to be OK in Windows: ``` #include <windows.h> int main() { OutputDebugStringW(NULL); return 0; } ``` The MR aligns behavior of `OutputDebugStringW` to Windows by adding a null check and bailing out of `OutputDebugStringW`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10933