You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2008/10/22 12:40:55 UTC

svn commit: r707027 - /httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Author: rpluem
Date: Wed Oct 22 03:40:55 2008
New Revision: 707027

URL: http://svn.apache.org/viewvc?rev=707027&view=rev
Log:
* There are no subrequests which have itself as parent.

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c?rev=707027&r1=707026&r2=707027&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c Wed Oct 22 03:40:55 2008
@@ -123,7 +123,7 @@
     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) {