Commit a9769903 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

This fixes a performance problem with directory indexing on Windows.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87934 13f79535-47bb-0310-9956-ffa450edef68
parent 6c6c4939
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -978,7 +978,7 @@ AP_DECLARE(request_rec *) ap_sub_req_lookup_file(const char *new_file,
        ap_parse_uri(rnew, rnew->uri);    /* fill in parsed_uri values */

        if (((rv = apr_stat(&rnew->finfo, rnew->filename,
                           APR_FINFO_NORM, rnew->pool)) != APR_SUCCESS)
                           APR_FINFO_MIN, rnew->pool)) != APR_SUCCESS)
                                                 && (rv != APR_INCOMPLETE)) {
            rnew->finfo.filetype = 0;
        }