diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-09-07 11:57:04 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-09-07 11:57:04 +0000 |
commit | a558afd8e98929c86a2a6b0fabacdba44a7b8b59 (patch) | |
tree | a7b32d40e5fcf2f57e037581bbc3ec416bc4c0ff | |
parent | 06b8301307c15103dbf98bd050154d41cf725c53 (diff) | |
download | nginx-a558afd8e98929c86a2a6b0fabacdba44a7b8b59.tar.gz nginx-a558afd8e98929c86a2a6b0fabacdba44a7b8b59.zip |
merge 2411:
handle "/../" case more reliably
-rw-r--r-- | src/http/ngx_http_parse.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index fcb8fdc8f..87fda2b61 100644 --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -1123,11 +1123,15 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes) #endif case '/': state = sw_slash; - u -= 4; - if (u < r->uri.data) { - return NGX_HTTP_PARSE_INVALID_REQUEST; - } - while (*(u - 1) != '/') { + u -= 5; + for ( ;; ) { + if (u < r->uri.data) { + return NGX_HTTP_PARSE_INVALID_REQUEST; + } + if (*u == '/') { + u++; + break; + } u--; } break; |