diff src/http/ngx_http_request.c @ 1734:b4d3c9c1ae20 stable-0.5

r1678, r1679 merge: *) copy protocol value when large request line is copied, this fixes error "fastcgi: the request record is too big" *) log how big fastcgi record
author Igor Sysoev <igor@sysoev.ru>
date Wed, 12 Dec 2007 21:11:21 +0000
parents 7b074520602f
children 1f802d26204f
line wrap: on
line diff
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -1151,6 +1151,10 @@ ngx_http_alloc_large_header_buffer(ngx_h
             r->args_start = new + (r->args_start - old);
         }
 
+        if (r->http_protocol.data) {
+            r->http_protocol.data = new + (r->http_protocol.data - old);
+        }
+
     } else {
         r->header_name_start = new;
         r->header_name_end = new + (r->header_name_end - old);