Lines 185-191
Link Here
|
185 |
* Only valid on chunked and C-L bodies where the C-L is > 0. */ |
185 |
* Only valid on chunked and C-L bodies where the C-L is > 0. */ |
186 |
if ((ctx->state == BODY_CHUNK || |
186 |
if ((ctx->state == BODY_CHUNK || |
187 |
(ctx->state == BODY_LENGTH && ctx->remaining > 0)) && |
187 |
(ctx->state == BODY_LENGTH && ctx->remaining > 0)) && |
188 |
f->r->expecting_100 && f->r->proto_num >= HTTP_VERSION(1,1)) { |
188 |
f->r->expecting_100 && f->r->proto_num >= HTTP_VERSION(1,1) && |
|
|
189 |
!(f->r->eos_sent || f->r->bytes_sent)) { |
189 |
char *tmp; |
190 |
char *tmp; |
190 |
apr_bucket_brigade *bb; |
191 |
apr_bucket_brigade *bb; |
191 |
|
192 |
|