# HG changeset patch # User Igor Sysoev # Date 1252324957 0 # Node ID 088a340003f4825b6f803d2c56fc51e4bfac7773 # Parent 634271b0cf2d84f7a529ae75e2e921b3877d9a87 merge r3076, r3080: fix segfault when a header starts with "\rX" and logging is set to info or debug level diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c --- 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_requ /* 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_requ goto header_done; default: state = sw_name; - r->header_name_start = p; c = lowcase[ch];