Core/Bnet: Fixed another uninitialized variable (just to shut up static analysis tools, its never uninitialized when used)

This commit is contained in:
Shauren
2017-10-17 22:40:25 +02:00
parent e7ec5bead1
commit cd3feb00d5

View File

@@ -40,7 +40,7 @@ enum class BanMode
class LoginRESTService
{
public:
LoginRESTService() : _ioService(nullptr), _stopped(false), _port(0) { }
LoginRESTService() : _ioService(nullptr), _stopped(false), _port(0), _loginTicketDuration(0) { }
static LoginRESTService& Instance();