Skip to content

Commit fed3dde

Browse files
committed
Follow up to r1919620: init path after "proxy:" is skipped.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919623 13f79535-47bb-0310-9956-ffa450edef68
1 parent b8b45e0 commit fed3dde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/proxy/mod_proxy_fcgi.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static int proxy_fcgi_canon(request_rec *r, char *url)
5959
{
6060
char *host, sport[7];
6161
const char *err;
62-
char *path = url, *pc;
62+
char *path, *pc;
6363
apr_port_t port, def_port;
6464
fcgi_req_config_t *rconf = NULL;
6565
const char *pathinfo_type = NULL;
@@ -71,6 +71,7 @@ static int proxy_fcgi_canon(request_rec *r, char *url)
7171
return DECLINED;
7272
}
7373

74+
path = url;
7475
port = def_port = ap_proxy_port_of_scheme("fcgi");
7576

7677
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r,

0 commit comments

Comments
 (0)