mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-30 01:53:17 +03:00
src/lib/server/Server.cpp: PVS-Studio: Initial and final values of the iterator are the same.
This commit is contained in:
parent
a73b65431b
commit
30baa8fbe1
@ -251,7 +251,7 @@ Server::~Server()
|
||||
// force immediate disconnection of secondary clients
|
||||
disconnect();
|
||||
for (OldClients::iterator index = m_oldClients.begin();
|
||||
index != m_oldClients.begin(); ++index) {
|
||||
index != m_oldClients.end(); ++index) {
|
||||
BaseClientProxy* client = index->first;
|
||||
m_events->deleteTimer(index->second);
|
||||
m_events->removeHandler(Event::kTimer, client);
|
||||
|
Loading…
Reference in New Issue
Block a user