summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-12-04 21:09:31 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-12-04 21:09:31 +0100
commita5401cd5b84dfa53152d0ae874f0f01f5462b412 (patch)
tree273f85a0e2824314a81a5fca978009f3bd3fbcc4
parent76a5d98ade79ec317cb801ba906bfc55e9d611b8 (diff)
parentcd6270c19d6b961e77c41823e82e2e76ddc789c8 (diff)
Merge branch 't/poll_errors_fixes' into refs/top-bases/t/eintr
-rw-r--r--hurd/hurdselect.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/hurd/hurdselect.c b/hurd/hurdselect.c
index e9e9b3e85b..dcda71b63f 100644
--- a/hurd/hurdselect.c
+++ b/hurd/hurdselect.c
@@ -288,7 +288,9 @@ _hurd_select (int nfds,
portset = MACH_PORT_NULL;
for (i = firstfd; i <= lastfd; ++i)
- if (d[i].type & ~SELECT_ERROR)
+ if (d[i].type & SELECT_ERROR)
+ d[i].reply_port = MACH_PORT_NULL;
+ else
{
int type = d[i].type;
d[i].reply_port = __mach_reply_port ();
@@ -491,7 +493,7 @@ _hurd_select (int nfds,
if (firstfd != -1)
for (i = firstfd; i <= lastfd; ++i)
- if (d[i].type & ~(SELECT_ERROR | SELECT_RETURNED))
+ if (d[i].reply_port != MACH_PORT_NULL)
__mach_port_destroy (__mach_task_self (), d[i].reply_port);
if (firstfd == -1 || (firstfd != lastfd && portset != MACH_PORT_NULL))
/* Destroy PORTSET, but only if it's not actually the reply port for a