* 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:
Ruediger Pluem
2008-10-22 10:40:55 +00:00
parent c51c1b5f9d
commit 75fdb89d40

View File

@ -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) {