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