mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 13:16:39 +00:00
Fix null reference issue [skip ci]
This commit is contained in:
+5
-1
@@ -51,7 +51,11 @@ DBcore::~DBcore()
|
|||||||
* are re-using the default database connection pointer when we dont have an
|
* are re-using the default database connection pointer when we dont have an
|
||||||
* external configuration setup ex: (content_database)
|
* external configuration setup ex: (content_database)
|
||||||
*/
|
*/
|
||||||
std::string mysql_connection_host = mysql.host;
|
std::string mysql_connection_host;
|
||||||
|
if (mysql.host) {
|
||||||
|
mysql_connection_host = mysql.host;
|
||||||
|
}
|
||||||
|
|
||||||
if (GetOriginHost() != mysql_connection_host) {
|
if (GetOriginHost() != mysql_connection_host) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user