This commit is contained in:
mlugg 2025-09-27 11:30:35 +01:00
parent 8950831d3c
commit a90eb50c80
No known key found for this signature in database
GPG Key ID: 3F5B7DCCBF4AF02E

View File

@ -146,7 +146,7 @@ pub fn fromPosixSignalContext(ctx_ptr: ?*const anyopaque) ?Native {
.pc = uc.mcontext.ss.pc,
},
.netbsd => .{
.x = uc.mcontext.gregs[0..31],
.x = uc.mcontext.gregs[0..31].*,
.sp = uc.mcontext.gregs[31],
.pc = uc.mcontext.gregs[32],
},