mirror of https://github.com/nginx/nginx
parent
6660f82e17
commit
34953132b1
|
|
@ -1123,11 +1123,15 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes)
|
||||||
#endif
|
#endif
|
||||||
case '/':
|
case '/':
|
||||||
state = sw_slash;
|
state = sw_slash;
|
||||||
u -= 4;
|
u -= 5;
|
||||||
if (u < r->uri.data) {
|
for ( ;; ) {
|
||||||
return NGX_HTTP_PARSE_INVALID_REQUEST;
|
if (u < r->uri.data) {
|
||||||
}
|
return NGX_HTTP_PARSE_INVALID_REQUEST;
|
||||||
while (*(u - 1) != '/') {
|
}
|
||||||
|
if (*u == '/') {
|
||||||
|
u++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
u--;
|
u--;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue