# HG changeset patch # User Igor Sysoev # Date 1252315135 0 # Node ID 3391f0dad64e417a556859481503bbdeb8ac3a47 # Parent 588c4b56875e8fa5fe2e269a8b2ae1f7658aab2d fix Win95 "/.../" handling for the record diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -1192,7 +1192,7 @@ ngx_http_parse_complex_uri(ngx_http_requ while (*u != '/') { u--; } - if (u < r->uri.data) { + if (u == r->uri.data) { return NGX_HTTP_PARSE_INVALID_REQUEST; } while (*(u - 1) != '/') {