comparison src/os/unix/ngx_readv_chain.c @ 582:c456a023113c NGINX_0_8_43

nginx 0.8.43 *) Feature: large geo ranges base loading speed-up. *) Bugfix: an error_page redirection to "location /zero { return 204; }" without changing status code kept the error body; the bug had appeared in 0.8.42. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration. Thanks to Maxim Dounin. *) Bugfix: the $uid_set variable may be used at any request processing stage.
author Igor Sysoev <http://sysoev.ru>
date Wed, 30 Jun 2010 00:00:00 +0400
parents fae16d0c5bf4
children d0f7a625f27c
comparison
equal deleted inserted replaced
581:22b2345b75d9 582:c456a023113c
156 156
157 } while (err == NGX_EINTR); 157 } while (err == NGX_EINTR);
158 158
159 rev->ready = 0; 159 rev->ready = 0;
160 160
161 if (n == NGX_ERROR){ 161 if (n == NGX_ERROR) {
162 c->read->error = 1; 162 c->read->error = 1;
163 } 163 }
164 164
165 return n; 165 return n;
166 } 166 }
245 245
246 } while (err == NGX_EINTR); 246 } while (err == NGX_EINTR);
247 247
248 rev->ready = 0; 248 rev->ready = 0;
249 249
250 if (n == NGX_ERROR){ 250 if (n == NGX_ERROR) {
251 c->read->error = 1; 251 c->read->error = 1;
252 } 252 }
253 253
254 return n; 254 return n;
255 } 255 }