From: Igor Sysoev Date: Mon, 7 Sep 2009 09:18:55 +0000 (+0000) Subject: fix Win95 "/.../" handling for the record X-Git-Tag: release-0.7.62~14 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=601a3dc736a3b69ebf037d6d8a9384b63d8e6bf5;p=nginx.git fix Win95 "/.../" handling for the record --- diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index 4aa1be8ed..df6d56c07 100644 --- 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_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) != '/') {