March 6, 2026
11:44 a.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/exit.c:
else fwprintf(stderr, L"Assertion failed: %ls, file %ls, line %d\n\n", str, file, line);
- raise(SIGABRT); - _exit(3); + abort(); This matches with native behavior if `_OUT_TO_STDERR` is set but doesn't work as expected if `_OUT_TO_MSGBOX` is used.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10250#note_131455