Limit rate: fixed integer overflow in limit calculation (ticket #256).

Patch by Alexey Antropov.
This commit is contained in:
Valentin Bartenev 2012-12-12 14:48:48 +00:00
parent 797cb820dc
commit eb90e8a5a5
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ ngx_http_write_filter(ngx_http_request_t *r, ngx_chain_t *in)
}
if (r->limit_rate) {
limit = r->limit_rate * (ngx_time() - r->start_sec + 1)
limit = (off_t) r->limit_rate * (ngx_time() - r->start_sec + 1)
- (c->sent - clcf->limit_rate_after);
if (limit <= 0) {