altarch-user / rpms / httpd

Forked from rpms/httpd 2 years ago
Clone

Blame SOURCES/httpd-2.4.6-r1530999.patch

008793
# ./pullrev.sh 1530999
008793
008793
http://svn.apache.org/viewvc?view=revision&revision=1530999
008793
008793
https://bugzilla.redhat.com/show_bug.cgi?id=1557785
008793
008793
--- httpd-2.4.6/server/core_filters.c
008793
+++ httpd-2.4.6/server/core_filters.c
008793
@@ -745,7 +745,9 @@
008793
                 pollset.reqevents = APR_POLLOUT;
008793
                 pollset.desc.s = s;
008793
                 apr_socket_timeout_get(s, &timeout);
008793
-                rv = apr_poll(&pollset, 1, &nsds, timeout);
008793
+                do {
008793
+                    rv = apr_poll(&pollset, 1, &nsds, timeout);
008793
+                } while (APR_STATUS_IS_EINTR(rv));
008793
                 if (rv != APR_SUCCESS) {
008793
                     break;
008793
                 }