March 10, 2026
4:44 p.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/exit.c:
_cputs("\nabnormal program termination\n"); } #endif + raise(SIGABRT); + +#if _MSVCR_VER >= 140 + if (MSVCRT_abort_behavior & _CALL_REPORTFAULT) + __fastfail(FAST_FAIL_FATAL_APP_EXIT); +#endif
`_CALL_REPORTFAULT` was added in `msvcr80`. It should be probably changed to `_MSVCR_VER >= 80`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10250#note_131758