zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 671428359ef85d5ffc9e44fbc8bd51ac0079f917 (tree)
parent 1f8a72175b5352e77b41ed4d165acccad08ffb16
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 17 Oct 2025 14:58:30 +0200

libunwind: backport llvm/llvm-project#162867

https://github.com/llvm/llvm-project/pull/162867

Diffstat:
Mlib/libunwind/src/Unwind-seh.cpp | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/libunwind/src/Unwind-seh.cpp b/lib/libunwind/src/Unwind-seh.cpp @@ -174,7 +174,8 @@ _GCC_specific_handler(PEXCEPTION_RECORD ms_exc, PVOID frame, PCONTEXT ms_ctx, } // FIXME: Indicate target frame in foreign case! // phase 2: the clean up phase - RtlUnwindEx(frame, (PVOID)disp->ControlPc, ms_exc, exc, ms_ctx, disp->HistoryTable); + RtlUnwindEx(frame, (PVOID)disp->ControlPc, ms_exc, exc, disp->ContextRecord, + disp->HistoryTable); _LIBUNWIND_ABORT("RtlUnwindEx() failed"); case _URC_INSTALL_CONTEXT: { // If we were called by __libunwind_seh_personality(), indicate that