From: Yann Ylavic Date: Fri, 12 Jul 2024 15:41:42 +0000 (+0000) Subject: core: ap_location_walk() does not deal with the filesystem X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00eeea913756cd539f663c31f943f3167fe56ae8;p=thirdparty%2Fapache%2Fhttpd.git core: ap_location_walk() does not deal with the filesystem So it shouldn't merge slashes according to filesystem rules. * server/request.c(ap_location_walk): Use ap_no2slash_ex(,0) instead of ap_no2slash() to ignore filesystem specifics. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919165 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/request.c b/server/request.c index 54f656ac724..791d1cea6b9 100644 --- a/server/request.c +++ b/server/request.c @@ -1500,7 +1500,7 @@ AP_DECLARE(int) ap_location_walk(request_rec *r) } else { char *uri = apr_pstrdup(r->pool, r->uri); - ap_no2slash(uri); + ap_no2slash_ex(uri, 0/*not an FS path*/); entry_uri = uri; }