Fix bad cache-size calculation when hosts-file read fails.

This commit is contained in:
André Glüpker
2016-01-12 12:54:17 +00:00
committed by Simon Kelley
parent a63b8b89e6
commit eddf365284
2 changed files with 5 additions and 1 deletions

View File

@@ -18,6 +18,10 @@ version 2.76
that the same name is empty. Thanks to Edwin Török for that the same name is empty. Thanks to Edwin Török for
the patch. the patch.
Fix failure to correctly calculate cache-size when
reading a hosts-file fails. Thanks to André Glüpker
for the patch.
version 2.75 version 2.75
Fix reversion on 2.74 which caused 100% CPU use when a Fix reversion on 2.74 which caused 100% CPU use when a

View File

@@ -919,7 +919,7 @@ int read_hostsfile(char *filename, unsigned int index, int cache_size, struct cr
if (!f) if (!f)
{ {
my_syslog(LOG_ERR, _("failed to load names from %s: %s"), filename, strerror(errno)); my_syslog(LOG_ERR, _("failed to load names from %s: %s"), filename, strerror(errno));
return 0; return cache_size;
} }
eatspace(f); eatspace(f);