aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/MySQLConnection.cpp
diff options
context:
space:
mode:
authorSpp <spp@jorge.gr>2011-01-11 11:18:00 +0100
committerSpp <spp@jorge.gr>2011-01-11 11:18:00 +0100
commitbd2728eb74c652ab60e7ea349f1bc0c1e54a9c28 (patch)
treef625655e449d00be7b9d012e1ef524e3d61a572d /src/server/shared/Database/MySQLConnection.cpp
parenta039086bca03c972274b5dfe58b88dca0fa046fd (diff)
Core: Fix some warnings
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rwxr-xr-xsrc/server/shared/Database/MySQLConnection.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp
index 7132b172db3..2a07fad7a9b 100755
--- a/src/server/shared/Database/MySQLConnection.cpp
+++ b/src/server/shared/Database/MySQLConnection.cpp
@@ -33,23 +33,23 @@
#include "Log.h"
MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) :
+m_statementTable(NULL),
m_reconnecting(false),
m_queue(NULL),
m_worker(NULL),
m_Mysql(NULL),
m_connectionInfo(connInfo),
-m_connectionFlags(CONNECTION_SYNCH),
-m_statementTable(NULL)
+m_connectionFlags(CONNECTION_SYNCH)
{
}
MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) :
+m_statementTable(NULL),
m_reconnecting(false),
m_queue(queue),
m_Mysql(NULL),
m_connectionInfo(connInfo),
-m_connectionFlags(CONNECTION_ASYNC),
-m_statementTable(NULL)
+m_connectionFlags(CONNECTION_ASYNC)
{
m_worker = new DatabaseWorker(m_queue, this);
}