Issue 16646: strip leading zeros from IP address

This commit is contained in:
Bram Verweij 2022-12-24 12:18:15 +01:00
parent 2ff5747b1f
commit fc281a1f96

View File

@ -1096,13 +1096,21 @@ static void check_variables(CoreParameter &coreParam)
if (changeProAdhocServer == "IP address")
{
g_Config.proAdhocServer = "";
bool leadingZero = true;
for (int i = 0; i < 12; i++)
{
if (i && i % 3 == 0)
{
g_Config.proAdhocServer += '.';
leadingZero = true;
}
int addressPt = ppsspp_pro_ad_hoc_ipv4[i];
g_Config.proAdhocServer += static_cast<char>('0' + addressPt);
if (addressPt || i % 3 == 2)
leadingZero = false; // We are either non-zero or the last digit of a byte
if (! leadingZero)
g_Config.proAdhocServer += static_cast<char>('0' + addressPt);
}
}
else