Re: [PATCH v4 0/2] MR10250: Call abort if _wassert error behavior is set to _OUT_TO_STDERR and trigger a debug break.
March 10, 2026
9: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
16
Age (days ago)
16
Last active (days ago)
0 comments
1 participants
participants (1)
-
Piotr Caban (@piotr)