diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-05 16:18:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-05 16:18:39 +0000 |
commit | 965838951ec63319efe3d6acd3340bd8e44de631 (patch) | |
tree | 6dbdd602ebc67aca4d54f0965f5eba949d5ab1e2 /sys/arch/mac68k | |
parent | 74d260749ea58c587f154bf4c0ffa1cfbac01cc9 (diff) |
ss_sp is correct, ss_base is not. noticed by agc@sde.uts.amdahl.com; netbsd pr#1784
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index 8c09edea343..7c4bb642498 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -555,7 +555,7 @@ sendsig(catcher, sig, mask, code) */ if ((psp->ps_flags & SAS_ALTSTACK) && oonstack == 0 && (psp->ps_sigonstack & sigmask(sig))) { - fp = (struct sigframe *) (psp->ps_sigstk.ss_base + + fp = (struct sigframe *) (psp->ps_sigstk.ss_sp + psp->ps_sigstk.ss_size - sizeof(struct sigframe)); psp->ps_sigstk.ss_flags |= SS_ONSTACK; } else |