comparison src/http/ngx_http_postpone_filter_module.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 3689cd4e3228
children 0ad9eeb6ac7f
comparison
equal deleted inserted replaced
191:219b4d22ddd9 192:af7f2341ecc5
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 }