diff src/http/modules/ngx_http_fastcgi_module.c @ 4136:7898857ff34b

Fixed loss of chain links in fastcgi module.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 20 Sep 2011 09:56:05 +0000
parents c7fae0daeb57
children e444e8f6538b
line wrap: on
line diff
--- a/src/http/modules/ngx_http_fastcgi_module.c
+++ b/src/http/modules/ngx_http_fastcgi_module.c
@@ -1744,8 +1744,10 @@ ngx_http_fastcgi_input_filter(ngx_event_
         }
 
         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);