diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-10-18 14:19:05 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-18 14:19:05 +0900 |
commit | 96d4b17bd6610275c3ae9d810f1557abaf168a23 (patch) | |
tree | 0d0cee5f20910807eb52599726fc1bc25135d20b /compat | |
parent | Merge branch 'tg/memfixes' into maint (diff) | |
parent | poll.c: always set revents, even if to zero (diff) | |
download | tgif-96d4b17bd6610275c3ae9d810f1557abaf168a23.tar.xz |
Merge branch 'rb/compat-poll-fix' into maint
Backports a moral equivalent of 2015 fix to the poll emulation from
the upstream gnulib to fix occasional breakages on HPE NonStop.
* rb/compat-poll-fix:
poll.c: always set revents, even if to zero
Diffstat (limited to 'compat')
-rw-r--r-- | compat/poll/poll.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compat/poll/poll.c b/compat/poll/poll.c index b10adc780f..ae03b74a6f 100644 --- a/compat/poll/poll.c +++ b/compat/poll/poll.c @@ -438,6 +438,10 @@ poll (struct pollfd *pfd, nfds_t nfd, int timeout) pfd[i].revents = happened; rc++; } + else + { + pfd[i].revents = 0; + } } return rc; |