summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrianp <brianp@13f79535-47bb-0310-9956-ffa450edef68>2002-08-06 03:37:54 +0000
committerbrianp <brianp@13f79535-47bb-0310-9956-ffa450edef68>2002-08-06 03:37:54 +0000
commit5e4b1cc47afd136c7d305d6360f6bd9c258488fd (patch)
tree2061a95052b56d18a82eb8a2222826099c8b3ec1
parent80413560c4405bace8523af0daf6584abb39587a (diff)
downloadlibapr-5e4b1cc47afd136c7d305d6360f6bd9c258488fd.tar.gz
Set the result array in the select-based version of apr_pollset_poll()
Submitted by: Rob Saccoccio <robs@fastcgi.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63797 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--poll/unix/poll.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/poll/unix/poll.c b/poll/unix/poll.c
index ff4a59216..f495c821f 100644
--- a/poll/unix/poll.c
+++ b/poll/unix/poll.c
@@ -602,6 +602,7 @@ APR_DECLARE(apr_status_t) apr_pollset_poll(apr_pollset_t *pollset,
}
}
+ *descriptors = pollset->result_set;
return APR_SUCCESS;
}