mirror of
https://github.com/curl/curl.git
synced 2026-08-26 04:13:31 +03:00
hostip: remove unnecessary leftover INT_MAX check in Curl_dnscache_prune
The math already uses timediff_t so no need for the extra logic Ref: #18678 Closes #18680
This commit is contained in:
parent
66c7e92ae4
commit
470611d76c
1 changed files with 3 additions and 7 deletions
10
lib/hostip.c
10
lib/hostip.c
|
|
@ -279,13 +279,9 @@ void Curl_dnscache_prune(struct Curl_easy *data)
|
|||
/* Remove outdated and unused entries from the hostcache */
|
||||
timediff_t oldest_ms = dnscache_prune(&dnscache->entries, timeout_ms, now);
|
||||
|
||||
if(Curl_hash_count(&dnscache->entries) > MAX_DNS_CACHE_SIZE) {
|
||||
if(oldest_ms < INT_MAX)
|
||||
/* prune the ones over half this age */
|
||||
timeout_ms = (int)oldest_ms / 2;
|
||||
else
|
||||
timeout_ms = INT_MAX/2;
|
||||
}
|
||||
if(Curl_hash_count(&dnscache->entries) > MAX_DNS_CACHE_SIZE)
|
||||
/* prune the ones over half this age */
|
||||
timeout_ms = oldest_ms / 2;
|
||||
else
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue