Generate the QoSm1Proxy Name from the Gateway Id.

Bugfix of AggregatePublish
Memory leak of ClientList

Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
This commit is contained in:
tomoaki
2018-08-14 08:11:11 +09:00
parent 97cffe4573
commit 9de1dc3705
9 changed files with 32 additions and 46 deletions

View File

@@ -79,7 +79,11 @@ void ClientList::setClientList(int type)
{
throw Exception("ClientList::initialize(): No client list defined by the configuration.");
}
params->clientListName = strdup(fileName.c_str());
if ( params->clientListName == nullptr )
{
params->clientListName = strdup(fileName.c_str());
}
}
void ClientList::setPredefinedTopics(bool aggrecate)