fix segfault when $host is used and request is "GET http://host HTTP/1.0"
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c
index b141000..135208e 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -290,6 +290,7 @@
                 state = sw_after_slash_in_uri;
                 break;
             default:
+                r->host_end = p;
                 return NGX_HTTP_PARSE_INVALID_REQUEST;
             }
             break;