2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

network: initialize ip_addr in GetHostIPv4Address()

This commit is contained in:
Sönke Holz 2021-08-13 00:28:44 +02:00
parent acca8aca8c
commit 765e97c347

View file

@ -372,7 +372,7 @@ std::optional<IPv4Address> GetHostIPv4Address() {
});
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);
LOG_INFO(Network, "IP address: {}", ip_addr);