From: Ruediger Pluem Date: Wed, 22 Oct 2008 10:40:55 +0000 (+0000) Subject: * There are no subrequests which have itself as parent. X-Git-Tag: 2.3.0~245 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75fdb89d4093f640fc7db9cbb5c81e0b5f369a3e;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index b9437ed16be..3ffd0321655 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -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) {