comparison src/http/modules/ngx_http_gzip_filter_module.c @ 346:05693816539c NGINX_0_6_17

nginx 0.6.17 *) Feature: the "If-Range" request header line support. Thanks to Alexander V. Inyukhin. *) Bugfix: URL double escaping in a redirect of the "msie_refresh" directive; bug appeared in 0.6.4. *) Bugfix: the "autoindex" directive did not work with the "alias /" directive. *) Bugfix: a segmentation fault might occur in worker process if subrequests were used. *) Bugfix: the big responses may be transferred truncated if SSL and gzip were used. *) Bugfix: the $status variable was equal to 0 if a proxied server returned response in HTTP/0.9 version.
author Igor Sysoev <http://sysoev.ru>
date Thu, 15 Nov 2007 00:00:00 +0300
parents 4276c2f1f434
children 9121a0a91f47
comparison
equal deleted inserted replaced
345:4279bc4cdec6 346:05693816539c
835 835
836 break; 836 break;
837 } 837 }
838 } 838 }
839 839
840 if (last == NGX_AGAIN && !ctx->done) { 840 if (ctx->out == NULL) {
841 return NGX_AGAIN; 841
842 } 842 if (last == NGX_AGAIN) {
843 843 return NGX_AGAIN;
844 if (ctx->out == NULL && ctx->busy == NULL) { 844 }
845 return NGX_OK; 845
846 if (ctx->busy == NULL) {
847 return NGX_OK;
848 }
846 } 849 }
847 850
848 last = ngx_http_next_body_filter(r, ctx->out); 851 last = ngx_http_next_body_filter(r, ctx->out);
849 852
850 /* 853 /*