diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-04-06 11:49:36 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-04-06 11:49:36 +0000 |
commit | 6b55b4b5203d91c1eb3529c71299033b8c7dae40 (patch) | |
tree | c3226c51c7ccbf32be4419e5c12b9a5b3c8c7c07 /src/http/modules/ngx_http_fastcgi_module.c | |
parent | c88ece44fef9c3268d4d7bc98ff409fd7df4338c (diff) | |
download | nginx-6b55b4b5203d91c1eb3529c71299033b8c7dae40.tar.gz nginx-6b55b4b5203d91c1eb3529c71299033b8c7dae40.zip |
fix building without HTTP cache, the bug had been introduced in r3461
Diffstat (limited to 'src/http/modules/ngx_http_fastcgi_module.c')
-rw-r--r-- | src/http/modules/ngx_http_fastcgi_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index b09b3307a..77b6d9d38 100644 --- 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_request_t *r) 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_request_t *r) #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; |