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

This commit is contained in:
Igor Sysoev 2009-09-07 09:18:55 +00:00
parent ad7e918f5a
commit 601a3dc736

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) != '/') {