mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
corrected small :) mistake
This commit is contained in:
parent
b67853d70e
commit
3b13d7090f
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ int Ndb_cluster_connection::connect(int reconnect)
|
|||
{
|
||||
if (m_local_config == 0) {
|
||||
m_local_config= new LocalConfig();
|
||||
if (m_local_config->init(m_connect_string,0)) {
|
||||
if (!m_local_config->init(m_connect_string,0)) {
|
||||
ndbout << "Configuration error: Unable to retrieve local config" << endl;
|
||||
m_local_config->printError();
|
||||
m_local_config->printUsage();
|
||||
|
@ -179,7 +179,7 @@ Ndb_cluster_connection::~Ndb_cluster_connection()
|
|||
my_free(m_connect_string,MYF(MY_ALLOW_ZERO_PTR));
|
||||
if (m_config_retriever)
|
||||
delete m_config_retriever;
|
||||
if (m_local_config == 0)
|
||||
if (m_local_config)
|
||||
delete m_local_config;
|
||||
DBUG_VOID_RETURN;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue