Fix null reference issue [skip ci]

This commit is contained in:
Akkadius 2020-04-19 01:02:35 -05:00
parent caa0ffda00
commit 6a51bcf8fd

View File

@ -51,7 +51,11 @@ DBcore::~DBcore()
* are re-using the default database connection pointer when we dont have an
* 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) {
return;
}