diff options
author | 1996-12-16 14:30:17 +0000 | |
---|---|---|
committer | 1996-12-16 14:30:17 +0000 | |
commit | ba26afe9170a8963e56bd4c20f7aea3429c67e5d (patch) | |
tree | 577a120f9fc7bcecdecf1c93d30b92901bec6141 | |
parent | Generate library versions of macro implementations as well (diff) | |
download | wireguard-openbsd-ba26afe9170a8963e56bd4c20f7aea3429c67e5d.tar.xz wireguard-openbsd-ba26afe9170a8963e56bd4c20f7aea3429c67e5d.zip |
uiomove not checked for failure; wpaul@skynet.ctr.columbia.edu
-rw-r--r-- | sys/kern/uipc_socket.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c index c71551fbfca..c6650e48c29 100644 --- a/sys/kern/uipc_socket.c +++ b/sys/kern/uipc_socket.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_socket.c,v 1.7 1996/09/20 22:53:10 deraadt Exp $ */ +/* $OpenBSD: uipc_socket.c,v 1.8 1996/12/16 14:30:17 deraadt Exp $ */ /* $NetBSD: uipc_socket.c,v 1.21 1996/02/04 02:17:52 christos Exp $ */ /* @@ -705,6 +705,8 @@ dontblock: splx(s); error = uiomove(mtod(m, caddr_t) + moff, (int)len, uio); s = splsoftnet(); + if (error) + goto release; } else uio->uio_resid -= len; if (len == m->m_len - moff) { |