diff options
author | George Hazan <george.hazan@gmail.com> | 2015-03-11 16:05:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-03-11 16:05:09 +0000 |
commit | d2c8ef0c175529c0b81dcb39d3bccff27d14c01b (patch) | |
tree | 03f64d193373876aa3cb5fb5c7e9b0991153e811 /protocols | |
parent | 3217cdb64cee13682bf06656d0556172d3ce2296 (diff) |
forgotten cycle increment
git-svn-id: http://svn.miranda-ng.org/main/trunk@12382 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_avatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/icq_avatar.cpp b/protocols/IcqOscarJ/src/icq_avatar.cpp index ab35de04a0..18c802872a 100644 --- a/protocols/IcqOscarJ/src/icq_avatar.cpp +++ b/protocols/IcqOscarJ/src/icq_avatar.cpp @@ -489,7 +489,7 @@ void CIcqProto::handleAvatarContactHash(DWORD dwUIN, char *szUID, MCONTACT hCont if (bJob == TRUE) { // Remove possible block - hash changed, try again.
mir_cslock l(m_avatarsMutex);
- for (int i = 0; i < m_arAvatars.getCount();) {
+ for (int i = 0; i < m_arAvatars.getCount(); i++) {
avatars_request *ar = m_arAvatars[i];
if (ar->hContact == hContact && ar->type == ART_BLOCK) { // found one, remove
m_arAvatars.remove(i);
|