mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:19:59 +00:00
network: initialize ip_addr in GetHostIPv4Address()
This commit is contained in:
parent
acca8aca8c
commit
765e97c347
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ std::optional<IPv4Address> GetHostIPv4Address() {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res != network_interfaces.end()) {
|
if (res != network_interfaces.end()) {
|
||||||
char ip_addr[16];
|
char ip_addr[16] = {};
|
||||||
ASSERT(inet_ntop(AF_INET, &res->ip_address, ip_addr, sizeof(ip_addr)) != nullptr);
|
ASSERT(inet_ntop(AF_INET, &res->ip_address, ip_addr, sizeof(ip_addr)) != nullptr);
|
||||||
LOG_INFO(Network, "IP address: {}", ip_addr);
|
LOG_INFO(Network, "IP address: {}", ip_addr);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue