From: Yann Ylavic Date: Mon, 8 Jul 2024 13:07:23 +0000 (+0000) Subject: Follow up to r1919015: fix compilation. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22b6311e1eb4177fbb1a18e0bdc6d4337b462ea2;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1919015: fix compilation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919019 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 365f501418a..4ba3bfe639e 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -2472,7 +2472,7 @@ PROXY_DECLARE(int) ap_proxy_fixup_uds_filename(request_rec *r) } else { /* Overwrite the UDS part of r->filename in place */ - memmove(uds_url, origin_url, origin_len + 1); + memmove(uds_url, origin_url, strlen(origin_url) + 1); } return OK; }