summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-09-07 11:54:51 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-09-07 11:54:51 +0000
commit06b8301307c15103dbf98bd050154d41cf725c53 (patch)
treececbf6259f522c84bdc989eba35a22b4b357f73d
parentbd4ed858f3994655c757e0751a40a473be798516 (diff)
downloadnginx-06b8301307c15103dbf98bd050154d41cf725c53.tar.gz
merge r3076, r3080:
fix segfault when a header starts with "\rX" and logging is set to info or debug level
-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 7975361c4..fcb8fdc8f 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -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];