summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_mp4_module.c
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2016-10-03 20:48:51 +0300
committerRoman Arutyunyan <arut@nginx.com>2016-10-03 20:48:51 +0300
commitf3bbd1c87f0bc97367603c3254c1465d3c622d1f (patch)
treeb6050595c803493f32b0bef7f590a4fadbd1f64c /src/http/modules/ngx_http_mp4_module.c
parent2e12afb955a211f55bfdcb3f3d92fc1b42d9dc99 (diff)
downloadnginx-f3bbd1c87f0bc97367603c3254c1465d3c622d1f.tar.gz
nginx-f3bbd1c87f0bc97367603c3254c1465d3c622d1f.tar.bz2
Do not set last_buf flag in subrequests.
The last_buf flag should only be set in the last buffer of the main request. Otherwise, several last_buf flags can appear in output. This can, for example, break the chunked filter, which will include several final chunks in output.
Diffstat (limited to 'src/http/modules/ngx_http_mp4_module.c')
-rw-r--r--src/http/modules/ngx_http_mp4_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_mp4_module.c b/src/http/modules/ngx_http_mp4_module.c
index 16ef83cf0..2a68bae95 100644
--- a/src/http/modules/ngx_http_mp4_module.c
+++ b/src/http/modules/ngx_http_mp4_module.c
@@ -1144,7 +1144,7 @@ ngx_http_mp4_read_mdat_atom(ngx_http_mp4_file_t *mp4, uint64_t atom_data_size)
data = &mp4->mdat_data_buf;
data->file = &mp4->file;
data->in_file = 1;
- data->last_buf = 1;
+ data->last_buf = (mp4->request == mp4->request->main) ? 1 : 0;
data->last_in_chain = 1;
data->file_last = mp4->offset + atom_data_size;