mirror of
https://github.com/nginx/nginx.git
synced 2026-07-15 20:03:14 -04:00
Merge e515c3376d into 18ccebb1a8
This commit is contained in:
commit
db8ea8ae3d
1 changed files with 2 additions and 2 deletions
|
|
@ -2469,7 +2469,7 @@ found:
|
|||
start_sample -= key_prefix;
|
||||
|
||||
while (rest < key_prefix) {
|
||||
trak->prefix += rest * duration;
|
||||
trak->prefix += (uint64_t) rest * duration;
|
||||
key_prefix -= rest;
|
||||
|
||||
entry--;
|
||||
|
|
@ -2480,7 +2480,7 @@ found:
|
|||
rest = count;
|
||||
}
|
||||
|
||||
trak->prefix += key_prefix * duration;
|
||||
trak->prefix += (uint64_t) key_prefix * duration;
|
||||
trak->duration += trak->prefix;
|
||||
rest -= key_prefix;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue