comparison src/core/ngx_buf.c @ 192:af7f2341ecc5 NGINX_0_3_43

nginx 0.3.43 *) Bugfix: in the SSI.
author Igor Sysoev <http://sysoev.ru>
date Wed, 26 Apr 2006 00:00:00 +0400
parents 82d695e3d662
children 003bd800ec2a
comparison
equal deleted inserted replaced
191:219b4d22ddd9 192:af7f2341ecc5
132 for (cl = *chain; cl; cl = cl->next) { 132 for (cl = *chain; cl; cl = cl->next) {
133 ll = &cl->next; 133 ll = &cl->next;
134 } 134 }
135 135
136 while (in) { 136 while (in) {
137
138 if (ngx_buf_sync_only(in->buf)) {
139 in = in->next;
140 continue;
141 }
142
137 cl = ngx_alloc_chain_link(pool); 143 cl = ngx_alloc_chain_link(pool);
138 if (cl == NULL) { 144 if (cl == NULL) {
139 return NGX_ERROR; 145 return NGX_ERROR;
140 } 146 }
141 147