diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-01-23 19:56:03 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-01-23 19:56:03 +0300 |
commit | de532922d9ab42aa15b40d47c8db53ac2af38500 (patch) | |
tree | d6b7c6b21c7a6e0e3620a3e0c7198e63454d05e3 /src/nxt_linux_sendfile.c | |
parent | 16cbf3c076a0aca6d47adaf3f719493674cf2363 (diff) | |
download | unit-de532922d9ab42aa15b40d47c8db53ac2af38500.tar.gz unit-de532922d9ab42aa15b40d47c8db53ac2af38500.tar.bz2 |
Introducing tasks.
Diffstat (limited to 'src/nxt_linux_sendfile.c')
-rw-r--r-- | src/nxt_linux_sendfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_linux_sendfile.c b/src/nxt_linux_sendfile.c index 9c8f563c..1dbac677 100644 --- a/src/nxt_linux_sendfile.c +++ b/src/nxt_linux_sendfile.c @@ -62,7 +62,7 @@ nxt_linux_event_conn_io_sendfile(nxt_event_conn_t *c, nxt_buf_t *b, sb.size = 0; sb.limit = limit; - niov = nxt_sendbuf_mem_coalesce(&sb); + niov = nxt_sendbuf_mem_coalesce(c->socket.task, &sb); if (niov == 0 && sb.sync) { return 0; |