diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-11-26 09:33:59 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-11-26 09:33:59 +0000 |
commit | 069899bfb5f62503122a57aeb5dc8ed492f14485 (patch) | |
tree | fd643b062444c8b07ae485e9e03d3f68530cc96c /src/http/ngx_http_parse.c | |
parent | 6b8c4aebf072a4a3c0946f070a0c6b384b8ad8f2 (diff) | |
download | nginx-069899bfb5f62503122a57aeb5dc8ed492f14485.tar.gz nginx-069899bfb5f62503122a57aeb5dc8ed492f14485.zip |
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/ngx_http_parse.c')
-rw-r--r-- | src/http/ngx_http_parse.c | 2 |
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 |