From a4d548ce78c5d9405c94d4ed33ab07c0750f9ae3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 11 Aug 2015 17:54:58 +0000 Subject: fix for the ME_DB_EVENT_FILTER_ADD processing git-svn-id: http://svn.miranda-ng.org/main/trunk@14915 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Db3x_mmap/src/dbevents.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'plugins/Db3x_mmap/src/dbevents.cpp') diff --git a/plugins/Db3x_mmap/src/dbevents.cpp b/plugins/Db3x_mmap/src/dbevents.cpp index 36d1b7624d..c42a0962ab 100644 --- a/plugins/Db3x_mmap/src/dbevents.cpp +++ b/plugins/Db3x_mmap/src/dbevents.cpp @@ -35,15 +35,6 @@ STDMETHODIMP_(MEVENT) CDb3Mmap::AddEvent(MCONTACT contactID, DBEVENTINFO *dbei) if (dbei == NULL || dbei->cbSize != sizeof(DBEVENTINFO)) return 0; if (dbei->timestamp == 0) return 0; - DBEvent dbe; - dbe.signature = DBEVENT_SIGNATURE; - dbe.contactID = contactID; // store native or subcontact's id - dbe.timestamp = dbei->timestamp; - dbe.flags = dbei->flags; - dbe.wEventType = dbei->eventType; - dbe.cbBlob = dbei->cbBlob; - BYTE *pBlob = dbei->pBlob; - MCONTACT contactNotifyID = contactID; DBCachedContact *ccSub = NULL; if (contactID != 0) { @@ -65,6 +56,15 @@ STDMETHODIMP_(MEVENT) CDb3Mmap::AddEvent(MCONTACT contactID, DBEVENTINFO *dbei) if (NotifyEventHooks(hEventFilterAddedEvent, contactNotifyID, (LPARAM)dbei)) return NULL; + DBEvent dbe; + dbe.signature = DBEVENT_SIGNATURE; + dbe.contactID = contactID; // store native or subcontact's id + dbe.timestamp = dbei->timestamp; + dbe.flags = dbei->flags; + dbe.wEventType = dbei->eventType; + dbe.cbBlob = dbei->cbBlob; + BYTE *pBlob = dbei->pBlob; + mir_ptr pCryptBlob; if (m_bEncrypted) { size_t len; -- cgit v1.2.3