update r3167: do not set r->discard_body if the body has been just discarded

This commit is contained in:
Igor Sysoev 2009-10-02 09:46:04 +00:00
parent 38f83a56bb
commit da861a9d6b
1 changed files with 1 additions and 2 deletions

View File

@ -469,8 +469,6 @@ ngx_http_discard_request_body(ngx_http_request_t *r)
}
}
r->discard_body = 1;
r->read_event_handler = ngx_http_read_discarded_request_body_handler;
if (ngx_handle_read_event(rev, 0) != NGX_OK) {
@ -479,6 +477,7 @@ ngx_http_discard_request_body(ngx_http_request_t *r)
if (ngx_http_read_discarded_request_body(r) != NGX_OK) {
r->count++;
r->discard_body = 1;
}
return NGX_OK;