# HG changeset patch # User Igor Sysoev # Date 1210240402 0 # Node ID 63c60504c0bfb537ee1ba08b09607f6911fabbc6 # Parent 34051c712e41f017a61334ab8c342033f97e529e fix error introduced in r1273 and r1275: nginx did not process FastCGI response if header was at end of FastCGI record 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 @@ -1232,7 +1232,7 @@ ngx_http_fastcgi_process_header(ngx_http } if (rc == NGX_OK) { - return NGX_AGAIN; + continue; } /* rc == NGX_AGAIN */