mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Bnet: Fixed uninitialized value
This commit is contained in:
@@ -35,7 +35,7 @@ int ns1__executeCommand(soap*, char*, char**) { return SOAP_OK; }
|
||||
class AsyncRequest
|
||||
{
|
||||
public:
|
||||
AsyncRequest(soap const& server) : _client(server) { }
|
||||
AsyncRequest(soap const& server) : _client(server), _responseStatus(0) { }
|
||||
|
||||
AsyncRequest(AsyncRequest const&) = delete;
|
||||
AsyncRequest& operator=(AsyncRequest const&) = delete;
|
||||
|
||||
Reference in New Issue
Block a user