Loading modules/http/http_core.c +1 −1 Original line number Diff line number Diff line Loading @@ -2605,7 +2605,7 @@ static apr_status_t sendfile_it_all(conn_rec *c, rv = apr_sendfile(c->client_socket, fd, hdtr, &file_offset, &tmplen, flags); total_bytes_left -= tmplen; if (!total_bytes_left || (rv != APR_SUCCESS && !APR_STATUS_IS_EAGAIN(rv))) { if (!total_bytes_left || rv != APR_SUCCESS) { return rv; /* normal case & error exit */ } Loading Loading
modules/http/http_core.c +1 −1 Original line number Diff line number Diff line Loading @@ -2605,7 +2605,7 @@ static apr_status_t sendfile_it_all(conn_rec *c, rv = apr_sendfile(c->client_socket, fd, hdtr, &file_offset, &tmplen, flags); total_bytes_left -= tmplen; if (!total_bytes_left || (rv != APR_SUCCESS && !APR_STATUS_IS_EAGAIN(rv))) { if (!total_bytes_left || rv != APR_SUCCESS) { return rv; /* normal case & error exit */ } Loading