Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ngx_output_chain.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c
index 4479edacc..e2dcc4c52 100644
--- a/src/core/ngx_output_chain.c
+++ b/src/core/ngx_output_chain.c
@@ -473,7 +473,7 @@ ngx_chain_writer(void *data, ngx_chain_t *in)
size += ngx_buf_size(cl->buf);
}
- if (size == 0) {
+ if (size == 0 && !ctx->connection->buffered) {
return NGX_OK;
}
@@ -489,6 +489,9 @@ ngx_chain_writer(void *data, ngx_chain_t *in)
if (ctx->out == NULL) {
ctx->last = &ctx->out;
+ }
+
+ if (!ctx->connection->buffered) {
return NGX_OK;
}