diff src/os/unix/ngx_linux_sendfile_chain.c @ 262:8c5bdde0d9f0

nginx-0.0.2-2004-02-18-18:45:21 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 18 Feb 2004 15:45:21 +0000
parents b6793bc5034b
children d4e65d74db9f
line wrap: on
line diff
--- a/src/os/unix/ngx_linux_sendfile_chain.c
+++ b/src/os/unix/ngx_linux_sendfile_chain.c
@@ -52,7 +52,7 @@ ngx_chain_t *ngx_linux_sendfile_chain(ng
 
         /* create the iovec and coalesce the neighbouring hunks */
 
-        for (cl = in; cl; cl = cl->next) {
+        for (cl = in; cl && header.nelts < IOV_MAX; cl = cl->next) {
             if (ngx_hunk_special(cl->hunk)) {
                 continue;
             }