comparison src/core/ngx_buf.c @ 194:003bd800ec2a NGINX_0_3_44

nginx 0.3.44 *) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
author Igor Sysoev <http://sysoev.ru>
date Thu, 04 May 2006 00:00:00 +0400
parents af7f2341ecc5
children fd759445d8a8
comparison
equal deleted inserted replaced
193:2a1394604ae9 194:003bd800ec2a
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
143 cl = ngx_alloc_chain_link(pool); 137 cl = ngx_alloc_chain_link(pool);
144 if (cl == NULL) { 138 if (cl == NULL) {
145 return NGX_ERROR; 139 return NGX_ERROR;
146 } 140 }
147 141