mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
fix Win95 "/.../" handling for the record
This commit is contained in:
parent
ad7e918f5a
commit
601a3dc736
@ -1192,7 +1192,7 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes)
|
|||||||
while (*u != '/') {
|
while (*u != '/') {
|
||||||
u--;
|
u--;
|
||||||
}
|
}
|
||||||
if (u < r->uri.data) {
|
if (u == r->uri.data) {
|
||||||
return NGX_HTTP_PARSE_INVALID_REQUEST;
|
return NGX_HTTP_PARSE_INVALID_REQUEST;
|
||||||
}
|
}
|
||||||
while (*(u - 1) != '/') {
|
while (*(u - 1) != '/') {
|
||||||
|
Loading…
Reference in New Issue
Block a user