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: ```c 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.