1
0

Replaced atoi() with StringToInteger().

This commit is contained in:
Mattes D
2015-01-25 16:25:15 +01:00
parent f243aa387c
commit 6ec5e8caa7
5 changed files with 11 additions and 9 deletions

View File

@@ -155,8 +155,8 @@ void cRCONServer::Initialize(cIniFile & a_IniFile)
// Start listening on each specified port:
for (auto port: Ports)
{
UInt16 PortNum = static_cast<UInt16>(atol(port.c_str()));
if (PortNum == 0)
UInt16 PortNum;
if (!StringToInteger(port, PortNum))
{
LOGINFO("Invalid RCON port value: \"%s\". Ignoring.", port.c_str());
continue;