mirror of
https://github.com/samba-team/samba.git
synced 2024-12-30 13:18:05 +03:00
Dereference the correct thing here, so we don't segfault
(This used to be commit ea18d02036
)
This commit is contained in:
parent
969b569d84
commit
f634f24cf8
@ -913,7 +913,7 @@ static BOOL internal_resolve_name(const char *name, int name_type,
|
||||
/* Save in name cache */
|
||||
for (i = 0; i < *return_count && DEBUGLEVEL == 100; i++)
|
||||
DEBUG(100, ("Storing name %s of type %d (ip: %s)\n", name,
|
||||
name_type, inet_ntoa(*return_iplist[i])));
|
||||
name_type, inet_ntoa((*return_iplist)[i])));
|
||||
|
||||
namecache_store(name, name_type, *return_count, *return_iplist);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user