diff options
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rw-r--r-- | src/server/shared/Database/MySQLConnection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index c16e42b71d6..9ee1fad0bc4 100644 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -33,17 +33,17 @@ #include "Timer.h" MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) : -m_connectionInfo(connInfo), m_queue(NULL), m_worker(NULL), -m_Mysql(NULL) +m_Mysql(NULL), +m_connectionInfo(connInfo) { } MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) : -m_connectionInfo(connInfo), m_queue(queue), -m_Mysql(NULL) +m_Mysql(NULL), +m_connectionInfo(connInfo) { m_worker = new DatabaseWorker(m_queue, this); } |