From: Nick Kew Date: Sat, 15 Apr 2006 22:45:00 +0000 (+0000) Subject: PR#39321 - don't segfault if a bad URL is specified in ProxyPass X-Git-Tag: 2.3.0~2450 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=381c9cec2fb7d0704af6ce9e055b438b48d04917;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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);