mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 08:00:48 +01:00
Core/Database: Close the MySQL connection only after getting the last error code
(cherry picked from commit 3230ca74d2)
This commit is contained in:
@@ -154,8 +154,9 @@ uint32 MySQLConnection::Open()
|
||||
else
|
||||
{
|
||||
TC_LOG_ERROR("sql.sql", "Could not connect to MySQL database at %s: %s", m_connectionInfo.host.c_str(), mysql_error(mysqlInit));
|
||||
uint32 errorCode = mysql_errno(mysqlInit);
|
||||
mysql_close(mysqlInit);
|
||||
return mysql_errno(mysqlInit);
|
||||
return errorCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user