Core/Misc: Fixed uninitialized field

Coverity CID 1354596
This commit is contained in:
Shauren
2016-06-06 08:51:42 +02:00
parent d8e0ce4d40
commit d59bba3c5d

View File

@@ -35,7 +35,7 @@ struct soap_plugin;
class LoginRESTService
{
public:
LoginRESTService() : _stopped(false), _port(0) { }
LoginRESTService() : _stopped(false), _port(0), _loginTicketCleanupTimer(nullptr) { }
static LoginRESTService& Instance();