March 10, 2026
9:44 p.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/exit.c:
wchar_t text[2048]; _snwprintf(text, sizeof(text), L"File: %ls\nLine: %d\n\nExpression: \"%ls\"", file, line, str); DoMessageBoxW(L"Assertion failed!", text); + raise(SIGABRT); + _exit(3); } else fwprintf(stderr, L"Assertion failed: %ls, file %ls, line %d\n\n", str, file, line);
- raise(SIGABRT); - _exit(3); + abort();
```suggestion:-3+0 fwprintf(stderr, L"Assertion failed: %ls, file %ls, line %d\n\n", str, file, line); abort(); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10250#note_131757