]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* There are no subrequests which have itself as parent.
authorRuediger Pluem <rpluem@apache.org>
Wed, 22 Oct 2008 10:40:55 +0000 (10:40 +0000)
committerRuediger Pluem <rpluem@apache.org>
Wed, 22 Oct 2008 10:40:55 +0000 (10:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@707027 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_ajp.c

index b9437ed16beb21f556db962c1e8774f1f9f99fea..3ffd0321655f837188c72002683152f7884e7097 100644 (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) {