Skip to content
Snippets Groups Projects
Commit 92aedf85 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

made Curl_tvdiff round the diff better and make the subtraction before

the multiply to not wrap-around
parent dd157fc3
No related branches found
No related tags found
No related merge requests found
...@@ -69,10 +69,10 @@ struct timeval Curl_tvnow (void) ...@@ -69,10 +69,10 @@ struct timeval Curl_tvnow (void)
* Make sure that the first argument is the more recent time, as otherwise * Make sure that the first argument is the more recent time, as otherwise
* we'll get a weird negative time-diff back... * we'll get a weird negative time-diff back...
*/ */
long Curl_tvdiff (struct timeval t1, struct timeval t2) long Curl_tvdiff (struct timeval newer, struct timeval older)
{ {
return (t1.tv_sec*1000 + t1.tv_usec/1000)- return (newer.tv_sec-older.tv_sec)*1000+
(t2.tv_sec*1000 + t2.tv_usec/1000); (499+newer.tv_usec-older.tv_usec)/1000;
} }
long Curl_tvlong (struct timeval t1) long Curl_tvlong (struct timeval t1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment