Commit 50510e3c authored by Pavel Vainerman's avatar Pavel Vainerman

(Conf): Исправление ошибки коммита с "исправлением утечки памяти".

parent f0f93b85
......@@ -293,7 +293,7 @@ void Configuration::initConfiguration( int argc, const char* const* argv )
param << this << name;
name = param.str();
param << "=corbaname::" << it->host << ":" << it->port;
new_argv[i+1] = param.str().c_str(); // strdup(param.str().c_str());
new_argv[i+1] = strdup(param.str().c_str());
if( ulog.is_info() )
ulog.info() << "(Configuration): внесли параметр " << param.str() << endl;
......
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