mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-02 07:07:29 +01:00
Core/Misc: Fixed uninitialized field
Coverity CID 1354596
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user