mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
* There are no subrequests which have itself as parent.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@707027 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -123,7 +123,7 @@ static apr_off_t get_content_length(request_rec * r)
|
||||
if (r->clength > 0) {
|
||||
return r->clength;
|
||||
}
|
||||
else if (r->main == NULL || r->main == r) {
|
||||
else if (r->main == NULL) {
|
||||
const char *clp = apr_table_get(r->headers_in, "Content-Length");
|
||||
|
||||
if (clp) {
|
||||
|
Reference in New Issue
Block a user