merge r3076, r3080:

fix segfault when a header starts with "\rX"
and logging is set to info or debug level
This commit is contained in:
Igor Sysoev 2009-09-07 11:54:51 +00:00
parent c712d68209
commit 14c4d27e85
1 changed files with 1 additions and 1 deletions

View File

@ -738,6 +738,7 @@ ngx_http_parse_header_line(ngx_http_request_t *r, ngx_buf_t *b)
/* first char */
case sw_start:
r->header_name_start = p;
r->invalid_header = 0;
switch (ch) {
@ -750,7 +751,6 @@ ngx_http_parse_header_line(ngx_http_request_t *r, ngx_buf_t *b)
goto header_done;
default:
state = sw_name;
r->header_name_start = p;
c = lowcase[ch];