summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-01-07 20:15:59 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-01-07 20:15:59 +0000
commit6c61dc812b9a5382c282f3e61111516fff562c0e (patch)
tree3308c3bb4734663bf28c8c0cf438ea7f6d4b49fa /plugins/TabSRMM
parent20fa18c158baf0c336c1efe655899943a916ce77 (diff)
fix for potentially endless loops
git-svn-id: http://svn.miranda-ng.org/main/trunk@11789 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r--plugins/TabSRMM/src/globals.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/globals.cpp b/plugins/TabSRMM/src/globals.cpp
index 7debe97ca5..ccc83a7940 100644
--- a/plugins/TabSRMM/src/globals.cpp
+++ b/plugins/TabSRMM/src/globals.cpp
@@ -551,8 +551,7 @@ void CGlobals::RestoreUnreadMessageAlerts(void)
if (db_get_dw(hContact, "SendLater", "count", 0))
sendLater->addContact(hContact);
- HANDLE hDbEvent = db_event_firstUnread(hContact);
- while (hDbEvent) {
+ for (HANDLE hDbEvent = db_event_firstUnread(hContact); hDbEvent; hDbEvent = db_event_next(hContact, hDbEvent)) {
DBEVENTINFO dbei = { sizeof(dbei) };
db_event_get(hDbEvent, &dbei);
if (!dbei.markedRead() && dbei.eventType == EVENTTYPE_MESSAGE) {
@@ -567,7 +566,6 @@ void CGlobals::RestoreUnreadMessageAlerts(void)
cle.ptszTooltip = toolTip;
CallService(MS_CLIST_ADDEVENT, 0, (LPARAM)&cle);
}
- hDbEvent = db_event_next(hContact, hDbEvent);
}
}
}