# HG changeset patch # User Igor Sysoev # Date 1270554576 0 # Node ID 67b8a4e0d7e17617d6264e40757b60fe12cfa21a # Parent 9c0335d511e514fdfe334f4da6249e7980a2310c fix building without HTTP cache, the bug had been introduced in r3461 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 @@ -1101,7 +1101,6 @@ ngx_http_fastcgi_process_header(ngx_http ngx_table_elt_t *h; ngx_http_upstream_t *u; ngx_http_fastcgi_ctx_t *f; - ngx_http_fastcgi_header_t *fh; ngx_http_upstream_header_t *hh; ngx_http_fastcgi_loc_conf_t *flcf; ngx_http_fastcgi_split_part_t *part; @@ -1255,8 +1254,9 @@ ngx_http_fastcgi_process_header(ngx_http #if (NGX_HTTP_CACHE) if (f->large_stderr && r->cache) { - u_char *start; - ssize_t len; + u_char *start; + ssize_t len; + ngx_http_fastcgi_header_t *fh; start = u->buffer.start + r->cache->header_start;