comparison src/core/ngx_buf.c @ 643:947c6fd27699 release-0.3.43

nginx-0.3.43-RELEASE import *) Bugfix: in the SSI.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 26 Apr 2006 15:21:08 +0000
parents 326634fb9d47
children 4946078f0a79
comparison
equal deleted inserted replaced
642:8bb4a20a1dc8 643:947c6fd27699
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