fix the previous commit

This commit is contained in:
Igor Sysoev 2006-12-29 07:01:11 +00:00
parent 0e8fc7a6b4
commit 818700cfcf

View File

@ -471,7 +471,10 @@ ngx_http_range_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
ngx_http_range_t *range;
ngx_http_range_filter_ctx_t *ctx;
if (in == NULL || r->headers_out.ranges.nelts == 0) {
if (in == NULL
|| r->headers_out.ranges.nelts == 0
|| ngx_buf_special(in->buf))
{
return ngx_http_next_body_filter(r, in);
}