mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
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:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user