1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

* nscd/hstcache.c (cache_addhst): Minimal optimization.

This commit is contained in:
Ulrich Drepper
2007-08-22 02:39:47 +00:00
parent 2a01ce56b7
commit a30d41c1d2
2 changed files with 3 additions and 1 deletions

View File

@@ -221,7 +221,7 @@ cache_addhst (struct database_dyn *db, int fd, request_header *req,
the current cache handling cannot handle and it is more than
questionable whether it is worthwhile complicating the cache
handling just for handling such a special case. */
if (he == NULL && hst->h_addr_list[1] == NULL)
if (he == NULL && h_addr_list_cnt == 1)
{
dataset = (struct dataset *) mempool_alloc (db,
total + req->key_len);