Add additional check to input address handling in CNetAdr2

This commit is contained in:
Amos 2022-02-22 15:22:51 +01:00
parent b7e3e02228
commit 26c0fa89ab

View File

@ -128,7 +128,7 @@ void CNetAdr2::SetIPAndPort(std::string svInAdr, std::string svInPort)
svInAdr = "127.0.0.1";
}
if (strstr(svInAdr.c_str(), "["))
if (strstr(svInAdr.c_str(), "[") || strstr(svInAdr.c_str(), "]"))
{
svInAdr = GetBase(svInAdr);
}