diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-05-16 20:51:12 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-05-16 20:51:12 +0200 |
commit | bb962f92ace6eb23c66c5fccee01f825c22363c3 (patch) | |
tree | 9a9fd3ca343fb685477c2c45668211236bb7ed1a /src/users.cpp | |
parent | 0a8b0d317ed4adc43185c1b791bcf752115dc58e (diff) |
Workaround for std::list::size() having linear complexity on some implementations
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp index f48e3642f..2305ba8ce 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -545,7 +545,10 @@ CullResult LocalUser::cull() // overwritten in UserManager::AddUser() with the real iterator so this check // is only a precaution currently. if (localuseriter != ServerInstance->Users->local_users.end()) + { + ServerInstance->Users->local_count--; ServerInstance->Users->local_users.erase(localuseriter); + } else ServerInstance->Logs->Log("USERS", DEFAULT, "ERROR: LocalUserIter does not point to a valid entry for " + this->nick); |