mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 02:19:18 +02:00
#45: use static buffer
This commit is contained in:
parent
a3cea72400
commit
9354697975
|
@ -927,7 +927,9 @@ get_resolvconf_addr()
|
|||
|
||||
ret = GetNetworkParams(fixed_info, &buflen);
|
||||
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
|
||||
return rv;
|
||||
|
|
Loading…
Reference in New Issue