10 Sep
2023
10 Sep
'23
9:34 a.m.
On Sun Sep 10 09:34:06 2023 +0000, Daniel Lehman wrote:
which version? 5 (and 0) crashes in ucrtbase.dll for me with 14.36.32532.0 which is the latest from https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist I was using the same version of the dll. I've tried something like this:
try
{
_Throw_future_error(error_code(5, generic_category()));
}
catch (future_error &e)
{
printf("got error %p\n", e.what());
}
`e.what()` returns NULL in this case. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3767#note_44843