mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 09:17:36 +01:00
Core/Database: Close the MySQL connection only after getting the last error code
This commit is contained in:
committed by
Ovahlord
parent
8819428919
commit
dd6498b8f9
@@ -153,8 +153,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