Commit b6068667 authored by unknown's avatar unknown

BUG#4034

parent 40b622f2
...@@ -2497,13 +2497,15 @@ fixNodeHostname(InitConfigFileParser::Context & ctx, const char * data){ ...@@ -2497,13 +2497,15 @@ fixNodeHostname(InitConfigFileParser::Context & ctx, const char * data){
ctx.reportError("Computer \"%s\" not declared" ctx.reportError("Computer \"%s\" not declared"
"- [%s] starting at line: %d", "- [%s] starting at line: %d",
compId, ctx.fname, ctx.m_sectionLineno); compId, ctx.fname, ctx.m_sectionLineno);
return false;
} }
const char * hostname; const char * hostname;
if(!computer->get("HostName", &hostname)){ if(!computer->get("HostName", &hostname)){
ctx.reportError("HostName missing in [COMPUTER] Id: %s" ctx.reportError("HostName missing in [COMPUTER] (Id: %d) "
"- [%s] starting at line: %d", " - [%s] starting at line: %d",
compId, ctx.fname, ctx.m_sectionLineno); compId, ctx.fname, ctx.m_sectionLineno);
return false;
} }
require(ctx.m_currentSection->put("HostName", hostname)); require(ctx.m_currentSection->put("HostName", hostname));
......
...@@ -193,7 +193,7 @@ ConfigValues::Iterator::set(Uint32 key, const char * value){ ...@@ -193,7 +193,7 @@ ConfigValues::Iterator::set(Uint32 key, const char * value){
char * & str = m_cfg.getString(m_cfg.m_values[pos+1]); char * & str = m_cfg.getString(m_cfg.m_values[pos+1]);
free(str); free(str);
str = strdup(value); str = strdup(value ? value : "");
return true; return true;
} }
...@@ -457,7 +457,7 @@ ConfigValuesFactory::put(const ConfigValues::Entry & entry){ ...@@ -457,7 +457,7 @@ ConfigValuesFactory::put(const ConfigValues::Entry & entry){
case ConfigValues::StringType:{ case ConfigValues::StringType:{
Uint32 index = m_cfg->m_stringCount++; Uint32 index = m_cfg->m_stringCount++;
m_cfg->m_values[pos+1] = index; m_cfg->m_values[pos+1] = index;
m_cfg->getString(index) = strdup(entry.m_string); m_cfg->getString(index) = strdup(entry.m_string ? entry.m_string : "");
m_freeKeys--; m_freeKeys--;
m_freeData -= sizeof(char *); m_freeData -= sizeof(char *);
DEBUG printf("Putting at: %d(%d) (loop = %d) key: %d value(%d): %s\n", DEBUG printf("Putting at: %d(%d) (loop = %d) key: %d value(%d): %s\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment