mirror of
https://github.com/nginx/nginx.git
synced 2026-06-30 13:53:18 +00:00
fix segfault if there was non cached large FastCGI stderr output before header,
the bug had been introduced in r3461
This commit is contained in:
parent
1c9f74852f
commit
7e3fdc4e8e
1 changed files with 1 additions and 1 deletions
|
|
@ -1254,7 +1254,7 @@ ngx_http_fastcgi_process_header(ngx_http_request_t *r)
|
|||
|
||||
#if (NGX_HTTP_CACHE)
|
||||
|
||||
if (f->large_stderr) {
|
||||
if (f->large_stderr && r->cache) {
|
||||
u_char *start;
|
||||
ssize_t len;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue