summaryrefslogtreecommitdiff
path: root/plugins/Dbx_mdb/src/dbcontacts.cpp
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2016-03-16 17:02:41 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2016-03-16 17:02:41 +0000
commit5dd0f9a66daa0f22818cd5dcdd85c7d33556d904 (patch)
treeb48cf9eb020c1acd610a0642f7895a11d7937ef0 /plugins/Dbx_mdb/src/dbcontacts.cpp
parentccd3481caa5dda6816747901108166298c8037d9 (diff)
dbx_lmdb: small fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@16485 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/dbcontacts.cpp')
-rw-r--r--plugins/Dbx_mdb/src/dbcontacts.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Dbx_mdb/src/dbcontacts.cpp b/plugins/Dbx_mdb/src/dbcontacts.cpp
index f19811b10e..0aa4206854 100644
--- a/plugins/Dbx_mdb/src/dbcontacts.cpp
+++ b/plugins/Dbx_mdb/src/dbcontacts.cpp
@@ -91,13 +91,11 @@ STDMETHODIMP_(LONG) CDbxMdb::DeleteContact(MCONTACT contactID)
return 1;
// delete
- // call notifier while outside mutex
- NotifyEventHooks(hContactDeletedEvent, contactID, 0);
mir_cslockfull lck(m_csDbAccess);
{
- LIST<EventItem> events(50);
+ LIST<EventItem> events(25);
GatherContactHistory(contactID, events);
while (events.getCount())
{
@@ -144,9 +142,11 @@ STDMETHODIMP_(LONG) CDbxMdb::DeleteContact(MCONTACT contactID)
if (contactID == m_hLastCachedContact)
m_hLastCachedContact = NULL;
-
lck.unlock();
+ // call notifier while outside mutex
+ NotifyEventHooks(hContactDeletedEvent, contactID, 0);
+
return 0;
}