diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-12-14 22:42:52 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-12-14 22:42:52 +0000 |
commit | f367b11a626a561f50b7ca1c1c15cd5763b10cbb (patch) | |
tree | 547ee9551697e980ffcac57417ccc45cb093f48f /src | |
parent | 55269a70cfe9f17e3bcb4030cebf80798d6f40c8 (diff) | |
download | nginx-f367b11a626a561f50b7ca1c1c15cd5763b10cbb.tar.gz nginx-f367b11a626a561f50b7ca1c1c15cd5763b10cbb.zip |
fix segfault when $host is used and request is "GET http://host HTTP/1.0"
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index b141000b6..135208ef0 100644 --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -290,6 +290,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b) state = sw_after_slash_in_uri; break; default: + r->host_end = p; return NGX_HTTP_PARSE_INVALID_REQUEST; } break; |