7ce080cf72
The `_EXCEPTION_POINTERS` structure is valid only within the context of the `UnhandledExceptionFilter` function. After the function exits, the memory referenced by the pointer might no longer be valid or the exception information. The solution for this was to create `BLI_system_backtrace_with_os_info` and passing a system-specific data as the second argument. `BLI_system_backtrace` calls `BLI_system_backtrace_with_os_info` with a null second argument internally. Pull Request: https://projects.blender.org/blender/blender/pulls/129999