comparison src/http/modules/ngx_http_sub_filter_module.c @ 334:42974b9e97b5 NGINX_0_5_37

nginx 0.5.37 *) Bugfix: if sub_filter and SSI were used together, then responses might were transferred incorrectly. *) Bugfix: large SSI inclusions might be truncated. *) Bugfix: worker processes might not catch reconfiguration and log rotation signals. *) Bugfix: nginx could not be built on latest Fedora 9 Linux. Thanks to Roxis. *) Bugfix: a segmentation fault might occur in worker process on Linux, if keepalive was enabled. *) Bugfix: an alert "sendmsg() failed (9: Bad file descriptor)" on some 64-bit platforms while reconfiguration.
author Igor Sysoev <http://sysoev.ru>
date Mon, 07 Jul 2008 00:00:00 +0400
parents 2eea67ed0bc2
children
comparison
equal deleted inserted replaced
333:30e294abe0ca 334:42974b9e97b5
320 b->shadow = NULL; 320 b->shadow = NULL;
321 b->last_buf = 0; 321 b->last_buf = 0;
322 b->recycled = 0; 322 b->recycled = 0;
323 323
324 if (b->in_file) { 324 if (b->in_file) {
325 b->file_last = b->file_pos + (b->last - b->start); 325 b->file_last = b->file_pos + (b->last - ctx->buf->pos);
326 b->file_pos += b->pos - b->start; 326 b->file_pos += b->pos - ctx->buf->pos;
327 } 327 }
328 328
329 cl->next = NULL; 329 cl->next = NULL;
330 *ctx->last_out = cl; 330 *ctx->last_out = cl;
331 ctx->last_out = &cl->next; 331 ctx->last_out = &cl->next;