From: deraadt Date: Mon, 16 Dec 1996 14:30:17 +0000 (+0000) Subject: uiomove not checked for failure; wpaul@skynet.ctr.columbia.edu X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ba26afe9170a8963e56bd4c20f7aea3429c67e5d;p=openbsd uiomove not checked for failure; wpaul@skynet.ctr.columbia.edu --- 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) {