Core/Database: Close the MySQL connection only after getting the last error code

This commit is contained in:
Giacomo Pozzoni
2019-04-12 08:08:57 +02:00
committed by Ovahlord
parent 8819428919
commit dd6498b8f9

View File

@@ -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;
}
}