Commit a68bc82a authored by Ruediger Pluem's avatar Ruediger Pluem
Browse files

* r->parsed_uri.path can be NULL in case of the CONNECT method.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1855744 13f79535-47bb-0310-9956-ffa450edef68
parent a01f9a73
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -195,8 +195,10 @@ AP_DECLARE(int) ap_process_request_internal(request_rec *r)
    ap_getparents(r->uri);     /* OK --- shrinking transformations... */
    if (sconf->merge_slashes != AP_CORE_CONFIG_OFF) { 
        ap_no2slash(r->uri);
        if (r->parsed_uri.path) {
            ap_no2slash(r->parsed_uri.path);
        }
     }

    /* All file subrequests are a huge pain... they cannot bubble through the
     * next several steps.  Only file subrequests are allowed an empty uri,