diff options
author | Ryan Bloom <rbb@apache.org> | 2002-12-24 15:59:58 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2002-12-24 15:59:58 +0000 |
commit | e394debc0a72207353f119914ea5870fdb83d40e (patch) | |
tree | bb47217182a902cd21af3c9a299bf0a9d8e71d50 /poll | |
parent | 26b1c7c1e8fb05d97e261196ffe24a3e66fd8313 (diff) | |
download | apr-e394debc0a72207353f119914ea5870fdb83d40e.tar.gz |
Fix an infinite loop in apr_poll_socket_clear.
Submitted by: INOUE Seiichiro <inoue@ariel-networks.com>
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll')
-rw-r--r-- | poll/unix/pollacc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poll/unix/pollacc.c b/poll/unix/pollacc.c index 36a2c8c7c..d27ff4ad9 100644 --- a/poll/unix/pollacc.c +++ b/poll/unix/pollacc.c @@ -169,6 +169,7 @@ APR_DECLARE(apr_status_t) apr_poll_socket_clear(apr_pollfd_t *aprset, apr_int16_ if (curr->reqevents & events) { curr->reqevents &= ~events; } + curr++ } return APR_SUCCESS; } |