mirror of
https://github.com/nginx/nginx.git
synced 2026-08-28 12:45:21 +00:00
Fixed loss of chain links in fastcgi module.
This commit is contained in:
parent
e4dab80e80
commit
d1b9a0388d
1 changed files with 4 additions and 2 deletions
|
|
@ -1744,8 +1744,10 @@ ngx_http_fastcgi_input_filter(ngx_event_pipe_t *p, ngx_buf_t *buf)
|
|||
}
|
||||
|
||||
if (p->free) {
|
||||
b = p->free->buf;
|
||||
p->free = p->free->next;
|
||||
cl = p->free;
|
||||
b = cl->buf;
|
||||
p->free = cl->next;
|
||||
ngx_free_chain(p->pool, cl);
|
||||
|
||||
} else {
|
||||
b = ngx_alloc_buf(p->pool);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue