You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
664 B
20 lines
664 B
6 years ago
|
# ./pullrev.sh 1530999
|
||
|
|
||
|
http://svn.apache.org/viewvc?view=revision&revision=1530999
|
||
|
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=1557785
|
||
|
|
||
|
--- httpd-2.4.6/server/core_filters.c
|
||
|
+++ httpd-2.4.6/server/core_filters.c
|
||
|
@@ -745,7 +745,9 @@
|
||
|
pollset.reqevents = APR_POLLOUT;
|
||
|
pollset.desc.s = s;
|
||
|
apr_socket_timeout_get(s, &timeout);
|
||
|
- rv = apr_poll(&pollset, 1, &nsds, timeout);
|
||
|
+ do {
|
||
|
+ rv = apr_poll(&pollset, 1, &nsds, timeout);
|
||
|
+ } while (APR_STATUS_IS_EINTR(rv));
|
||
|
if (rv != APR_SUCCESS) {
|
||
|
break;
|
||
|
}
|