# HG changeset patch # User Roman Arutyunyan # Date 1411043834 -14400 # Node ID 52b4984d2b3ce1a18b22d12f1568724d1777c02a # Parent cda4fcb9294c8f5a0998e7c5d57c5143457db766 FastCGI: fixed start pointers in request buffers. The start pointers are used in ngx_http_upstream_reinit() to reinit FastCGI requests. diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -1129,6 +1129,7 @@ ngx_http_fastcgi_create_request(ngx_http } else { b->pos = pos; + b->start = pos; pos += 32 * 1024; if (pos >= body->buf->last) {