comparison src/http/ngx_http_copy_filter_module.c @ 535:80f7156c2965 NGINX_0_8_14

nginx 0.8.14 *) Bugfix: an expired cached response might stick in the "UPDATING" state. *) Bugfix: a segmentation fault might occur in worker process, if error_log was set to info or debug level. Thanks to Sergey Bochenkov. *) Bugfix: in embedded perl module; the bug had appeared in 0.8.11. *) Bugfix: an "error_page" directive did not redirect a 413 error; the bug had appeared in 0.6.10.
author Igor Sysoev <http://sysoev.ru>
date Mon, 07 Sep 2009 00:00:00 +0400
parents 1bc8c12d80ec
children 0161f3197817
comparison
equal deleted inserted replaced
534:441fbf722b8c 535:80f7156c2965
169 } 169 }
170 170
171 c->busy_sendfile = NULL; 171 c->busy_sendfile = NULL;
172 e = (ngx_http_ephemeral_t *) &r->uri_start; 172 e = (ngx_http_ephemeral_t *) &r->uri_start;
173 173
174 n = ngx_file_aio_read(file, e->preload, 4, offset, r->pool); 174 n = ngx_file_aio_read(file, &e->aio_preload, 1, offset, r->pool);
175 175
176 if (n > 0) { 176 if (n > 0) {
177 continue; 177 continue;
178 } 178 }
179 179