The code that reclaims descriptors from in-transit unix domain

descriptor-passing messages was calling sorflush() without checking
    to see if the descriptor was actually a socket.  This can cause a
    crash by exiting programs that use the mechanism under certain
    circumstances.
This commit is contained in:
Matthew Dillon 1999-01-21 09:02:18 +00:00
parent 0069f505eb
commit 39ebd17269

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94
* $Id: uipc_usrreq.c,v 1.37 1998/10/25 17:44:51 phk Exp $
* $Id: uipc_usrreq.c,v 1.38 1999/01/21 08:29:04 dillon Exp $
*/
#include <sys/param.h>