mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
fix initialization order in HttpManager constructor
This commit is contained in:
@@ -31,10 +31,10 @@ HttpResponse::HttpResponse(int funcRef, int statusCode, const std::string& body,
|
|||||||
HttpManager::HttpManager()
|
HttpManager::HttpManager()
|
||||||
: httpWorkQueue(16),
|
: httpWorkQueue(16),
|
||||||
httpResponseQueue(16),
|
httpResponseQueue(16),
|
||||||
httpCondVar(),
|
|
||||||
httpCondVarMutex(),
|
|
||||||
startedHttpWorkerThread(false),
|
startedHttpWorkerThread(false),
|
||||||
httpCancelationToken(false),
|
httpCancelationToken(false),
|
||||||
|
httpCondVar(),
|
||||||
|
httpCondVarMutex(),
|
||||||
parseUrlRegex("^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?")
|
parseUrlRegex("^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?")
|
||||||
{
|
{
|
||||||
StartHttpWorker();
|
StartHttpWorker();
|
||||||
|
|||||||
Reference in New Issue
Block a user