Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/http
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-11-26 12:33:59 +0300
committerIgor Sysoev <igor@sysoev.ru>2004-11-26 12:33:59 +0300
commit069899bfb5f62503122a57aeb5dc8ed492f14485 (patch)
treefd643b062444c8b07ae485e9e03d3f68530cc96c /src/http
parent6b8c4aebf072a4a3c0946f070a0c6b384b8ad8f2 (diff)
nginx-0.1.10-RELEASE importrelease-0.1.10
*) Bugfix: if the request without arguments contains "//", "/./", "/../" or "%XX" then the lost character in the request line was lost; the bug had appeared in 0.1.9. *) Bugfix: the fix in 0.1.9 for the files bigger than 2G on Linux did not work.
Diffstat (limited to 'src/http')
-rw-r--r--src/http/ngx_http_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c
index a4e7d8045..96ed49c74 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -686,7 +686,7 @@ ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r)
ch = *p++;
- while (p < r->uri_end && r->args_start == NULL) {
+ while (p <= r->uri_end && r->args_start == NULL) {
/*
* we use "ch = *p++" inside the cycle but this operation is safe