comparison src/http/modules/ngx_http_sub_filter_module.c @ 582:c456a023113c NGINX_0_8_43

nginx 0.8.43 *) Feature: large geo ranges base loading speed-up. *) Bugfix: an error_page redirection to "location /zero { return 204; }" without changing status code kept the error body; the bug had appeared in 0.8.42. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration. Thanks to Maxim Dounin. *) Bugfix: the $uid_set variable may be used at any request processing stage.
author Igor Sysoev <http://sysoev.ru>
date Wed, 30 Jun 2010 00:00:00 +0400
parents 5c576ea5dbd9
children 016632f0fb18
comparison
equal deleted inserted replaced
581:22b2345b75d9 582:c456a023113c
208 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 208 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
209 "http sub filter \"%V\"", &r->uri); 209 "http sub filter \"%V\"", &r->uri);
210 210
211 while (ctx->in || ctx->buf) { 211 while (ctx->in || ctx->buf) {
212 212
213 if (ctx->buf == NULL ){ 213 if (ctx->buf == NULL) {
214 ctx->buf = ctx->in->buf; 214 ctx->buf = ctx->in->buf;
215 ctx->in = ctx->in->next; 215 ctx->in = ctx->in->next;
216 ctx->pos = ctx->buf->pos; 216 ctx->pos = ctx->buf->pos;
217 } 217 }
218 218