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

@@ -393,8 +393,8 @@ bool cServer::Start(void)
{
for (auto port: m_Ports)
{
UInt16 PortNum = static_cast<UInt16>(atoi(port.c_str()));
if (PortNum == 0)
UInt16 PortNum;
if (!StringToInteger(port, PortNum))
{
LOGWARNING("Invalid port specified for server: \"%s\". Ignoring.", port.c_str());
continue;