diff options
author | 2014-01-10 20:53:19 +0000 | |
---|---|---|
committer | 2014-01-10 20:53:19 +0000 | |
commit | f32e74badc1ea570f0ed26b961d546c65794d785 (patch) | |
tree | 3f05edfdacdf7411e3067762631b4af0fa5ac898 /lib/libc | |
parent | do not list sha1 and sha256 in SEE ALSO, since md5 is already there, and (diff) | |
download | wireguard-openbsd-f32e74badc1ea570f0ed26b961d546c65794d785.tar.xz wireguard-openbsd-f32e74badc1ea570f0ed26b961d546c65794d785.zip |
correct argument handling; this has been broken since to beginning
and was writing to wrong memory.
ok jsing miod guenther
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/hppa/sys/sigpending.S | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/arch/hppa/sys/sigpending.S b/lib/libc/arch/hppa/sys/sigpending.S index fd8bd458cef..e58270c1147 100644 --- a/lib/libc/arch/hppa/sys/sigpending.S +++ b/lib/libc/arch/hppa/sys/sigpending.S @@ -1,4 +1,4 @@ -/* $OpenBSD: sigpending.S,v 1.10 2006/01/05 22:13:55 kettenis Exp $ */ +/* $OpenBSD: sigpending.S,v 1.11 2014/01/10 20:53:19 deraadt Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -30,8 +30,7 @@ SYSENTRY(sigpending) SYSCALL(sigpending) - ldw HPPA_FRAME_ARG(0)(sp), t1 - stw ret0, 0(t1) + stw ret0, 0(arg0) bv r0(rp) copy r0, ret0 SYSEXIT(sigpending) |