Skip to content

Commit

Permalink
Follow up to r1919015: fix compilation.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919019 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit 22b6311)
  • Loading branch information
ylavic authored and rpluem committed Jul 11, 2024
1 parent fa5fd93 commit 61a91eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/proxy/proxy_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -2476,7 +2476,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;
}
Expand Down

0 comments on commit 61a91eb

Please sign in to comment.