comparison src/core/ngx_hunk.c @ 136:da00cde00e8a

nginx-0.0.1-2003-10-02-09:39:37 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 02 Oct 2003 05:39:37 +0000
parents e29909bd9b8a
children 2d9e4a8b6d11
comparison
equal deleted inserted replaced
135:e29909bd9b8a 136:da00cde00e8a
111 111
112 while (in) { 112 while (in) {
113 ngx_test_null(ce, ngx_alloc_chain_entry(pool), NGX_ERROR); 113 ngx_test_null(ce, ngx_alloc_chain_entry(pool), NGX_ERROR);
114 114
115 ce->hunk = in->hunk; 115 ce->hunk = in->hunk;
116 ce->next = NULL;
117 *le = ce; 116 *le = ce;
118 le = &ce->next; 117 le = &ce->next;
119 in = in->next; 118 in = in->next;
120 } 119 }
120
121 *le = NULL;
121 122
122 return NGX_OK; 123 return NGX_OK;
123 } 124 }
124 125
125 126