mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Core/Bnet: Fixed another uninitialized variable (just to shut up static analysis tools, its never uninitialized when used)
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user