1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-02 06:54:15 +00:00

try fixing segfault

This commit is contained in:
Jeff Becker 2016-06-29 11:57:44 -04:00
parent f88f68f248
commit 8b7b6cfbc5
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -430,7 +430,7 @@ namespace net
while(cur)
{
std::string cur_ifname(cur->ifa_name);
if (cur_ifname == ifname && cur->ifa_addr->sa_family == af)
if (cur_ifname == ifname && cur->ifa_addr && cur->ifa_addr->sa_family == af)
{
// match
size_t sz = (ipv6 ? INET6_ADDRSTRLEN : INET_ADDRSTRLEN);
@ -440,7 +440,6 @@ namespace net
// this probably won't screw up (right?)
inet_ntop(af, cur->ifa_addr, addr, sl);
std::string cur_ifaddr(addr);
delete [] addr;
freeifaddrs(addrs);
return boost::asio::ip::address::from_string(cur_ifaddr);
}