From 381c9cec2fb7d0704af6ce9e055b438b48d04917 Mon Sep 17 00:00:00 2001 From: Nick Kew Date: Sat, 15 Apr 2006 22:45:00 +0000 Subject: [PATCH] PR#39321 - don't segfault if a bad URL is specified in ProxyPass git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@394390 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index a63bfcaf636..b4ab3c0d12e 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1308,6 +1308,9 @@ PROXY_DECLARE(const char *) ap_proxy_add_worker(proxy_worker **worker, if (rv != APR_SUCCESS) { return "Unable to parse URL"; } + if (!uri.hostname || !uri.scheme) { + return "URL must be absolute!"; + } ap_str_tolower(uri.hostname); ap_str_tolower(uri.scheme); -- 2.47.2