mirror of
https://github.com/apache/httpd.git
synced 2026-01-06 09:01:14 +03:00
Revert part of r983116: Don't break the loop if rv is EAGAIN
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@984985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -190,7 +190,7 @@ static apr_status_t reqtimeout_filter(ap_filter_t *f,
|
||||
#endif
|
||||
|
||||
rv = ap_get_brigade(f->next, bb, AP_MODE_GETLINE, APR_NONBLOCK_READ, remaining);
|
||||
if (rv != APR_SUCCESS) {
|
||||
if (rv != APR_SUCCESS && !APR_STATUS_IS_EAGAIN(rv)) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user