remove unnecessary variable assignment
This commit is contained in:
parent
0cfd041de9
commit
0c1f05a8ff
1 changed files with 1 additions and 3 deletions
|
@ -164,9 +164,7 @@ void CYSFReflector::run()
|
|||
|
||||
CNetwork network(m_conf.getNetworkPort(), m_conf.getId(), m_conf.getName(), m_conf.getDescription(), m_conf.getNetworkDebug());
|
||||
|
||||
const char* bindaddr = m_conf.getNetworkBindAddr().c_str();
|
||||
|
||||
ret = network.open(bindaddr);
|
||||
ret = network.open(m_conf.getNetworkBindAddr().c_str());
|
||||
if (!ret) {
|
||||
::LogFinalise();
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue