comparison src/http/ngx_http_postpone_filter_module.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 5e8fb59c18c1
children 5fd7a5e99047
comparison
equal deleted inserted replaced
642:8bb4a20a1dc8 643:947c6fd27699
94 ngx_chain_t *cl; 94 ngx_chain_t *cl;
95 ngx_buf_t *b = NULL; 95 ngx_buf_t *b = NULL;
96 for (cl = pr->out; cl; cl = cl->next) { 96 for (cl = pr->out; cl; cl = cl->next) {
97 if (cl->buf == b) { 97 if (cl->buf == b) {
98 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, 98 ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
99 "the same buf was used in postponed"); 99 "the same buf was used in postponed %p %p",
100 b, b->pos);
100 ngx_debug_point(); 101 ngx_debug_point();
101 return NGX_ERROR; 102 return NGX_ERROR;
102 } 103 }
103 b = cl->buf; 104 b = cl->buf;
104 } 105 }