Core/Bnet: Fixed uninitialized value

This commit is contained in:
Shauren
2017-10-10 23:08:54 +02:00
parent 1292a987f1
commit b09bd8d702

View File

@@ -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;