From c239da505545b0d90c4a1cbd7b3e14be9ef3c998 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 24 Oct 2008 15:12:11 +0000 Subject: [PATCH] fix case when URL has no port, but has ":" in URI part, the bug has been introduced in r2204 --- src/core/ngx_inet.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/core/ngx_inet.c b/src/core/ngx_inet.c index 6568cecb7..e976c4cdb 100644 --- a/src/core/ngx_inet.c +++ b/src/core/ngx_inet.c @@ -264,7 +264,7 @@ ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u) port = ngx_strlchr(host, last, ':'); - uri = ngx_strlchr(port ? port : host, last, '/'); + uri = ngx_strlchr(host, last, '/'); if (uri) { if (u->listen || !u->uri_part) { @@ -276,6 +276,10 @@ ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u) u->uri.data = uri; last = uri; + + if (uri < port) { + port = NULL; + } } if (port) {