mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-09 20:51:04 +00:00
try fixing segfault
This commit is contained in:
parent
f88f68f248
commit
8b7b6cfbc5
3
util.cpp
3
util.cpp
@ -430,7 +430,7 @@ namespace net
|
|||||||
while(cur)
|
while(cur)
|
||||||
{
|
{
|
||||||
std::string cur_ifname(cur->ifa_name);
|
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
|
// match
|
||||||
size_t sz = (ipv6 ? INET6_ADDRSTRLEN : INET_ADDRSTRLEN);
|
size_t sz = (ipv6 ? INET6_ADDRSTRLEN : INET_ADDRSTRLEN);
|
||||||
@ -440,7 +440,6 @@ namespace net
|
|||||||
// this probably won't screw up (right?)
|
// this probably won't screw up (right?)
|
||||||
inet_ntop(af, cur->ifa_addr, addr, sl);
|
inet_ntop(af, cur->ifa_addr, addr, sl);
|
||||||
std::string cur_ifaddr(addr);
|
std::string cur_ifaddr(addr);
|
||||||
delete [] addr;
|
|
||||||
freeifaddrs(addrs);
|
freeifaddrs(addrs);
|
||||||
return boost::asio::ip::address::from_string(cur_ifaddr);
|
return boost::asio::ip::address::from_string(cur_ifaddr);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user