]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
prevent near infinite subrequest recursion with mod_negotiation enabled.
authorGreg Ames <gregames@apache.org>
Tue, 9 Oct 2001 01:33:48 +0000 (01:33 +0000)
committerGreg Ames <gregames@apache.org>
Tue, 9 Oct 2001 01:33:48 +0000 (01:33 +0000)
commit8dd598a71f1bc7aca1a870e0a61d1e38fd0980ca
treee9c0789a4627a517b4e5d0261cb48cb04855a464
parent3c43502494cbf24f23ce6c0fed71c56746dec874
prevent near infinite subrequest recursion with mod_negotiation enabled.
This can happen if there is a partial match between a bad URI and a
file with a variant extention.

ap_sub_req_lookup_dirent has apparently been generating bogus subrequest
URIs for ages, but they used to be ignored.  Once we started calling
ap_process_request_internal for all subrequests, they started causing
problems.  Make it explicit that rnew->uri is to be ignored for this type
of subrequest.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91375 13f79535-47bb-0310-9956-ffa450edef68
server/request.c