mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 16:19:20 +02:00
#45: use static buffer
This commit is contained in:
parent
af1380f29d
commit
13a5b7c2db
|
@ -927,7 +927,9 @@ get_resolvconf_addr()
|
||||||
|
|
||||||
ret = GetNetworkParams(fixed_info, &buflen);
|
ret = GetNetworkParams(fixed_info, &buflen);
|
||||||
if (ret == NO_ERROR) {
|
if (ret == NO_ERROR) {
|
||||||
rv = fixed_info->DnsServerList.IpAddress.String;
|
strncpy(addr, fixed_info->DnsServerList.IpAddress.String, sizeof(addr));
|
||||||
|
addr[15] = 0;
|
||||||
|
rv = addr;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
return rv;
|
return rv;
|
||||||
|
|
Loading…
Reference in New Issue