comparison src/http/ngx_http_request_body.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 86dad910eeb6
children 4c5d2c627a6c
comparison
equal deleted inserted replaced
534:441fbf722b8c 535:80f7156c2965
475 475
476 if (ngx_handle_read_event(rev, 0) != NGX_OK) { 476 if (ngx_handle_read_event(rev, 0) != NGX_OK) {
477 return NGX_HTTP_INTERNAL_SERVER_ERROR; 477 return NGX_HTTP_INTERNAL_SERVER_ERROR;
478 } 478 }
479 479
480 r->count++;
480 (void) ngx_http_read_discarded_request_body(r); 481 (void) ngx_http_read_discarded_request_body(r);
481 482
482 return NGX_OK; 483 return NGX_OK;
483 } 484 }
484 485