fix Win95 "/.../" handling for the record

This commit is contained in:
Igor Sysoev 2009-09-07 09:18:55 +00:00
parent ae1a33254a
commit 1ab7430cdb
1 changed files with 1 additions and 1 deletions

View File

@ -1192,7 +1192,7 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes)
while (*u != '/') {
u--;
}
if (u < r->uri.data) {
if (u == r->uri.data) {
return NGX_HTTP_PARSE_INVALID_REQUEST;
}
while (*(u - 1) != '/') {