1998-11-19  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>

	* sunrpc/svc_unix.c (readunix): Check for POLLERR, POLLHUP and
	POLLNVAL.
This commit is contained in:
Ulrich Drepper 1998-11-19 12:52:22 +00:00
parent bb41a976a3
commit f1317ef509
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
1998-11-19 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* sunrpc/svc_unix.c (readunix): Check for POLLERR, POLLHUP and
POLLNVAL.
1998-11-19 Ulrich Drepper <drepper@cygnus.com>
* Makeconfig: Add comment to all-subdirs definition.

View file

@ -378,6 +378,9 @@ readunix (char *xprtptr, char *buf, int len)
case 0:
goto fatal_err;
default:
if ((pollfd.revents & POLLERR) || (pollfd.revents & POLLHUP)
|| (pollfd.revents & POLLNVAL))
goto fatal_err;
break;
}
}