diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-13 13:14:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-13 13:14:59 +0000 |
commit | 09328f1364768480ba83b7dc9bd7f9235d8a0767 (patch) | |
tree | d071f4100b68f9af091f5b6d3c58d3cd17472cb0 /plugins/HistoryStats/src/mirandacontact.cpp | |
parent | e0ed9d34c0c21d3436e855fa1d32a0f824583116 (diff) |
fix for a crash (thx white_tiger for a patch)
git-svn-id: http://svn.miranda-ng.org/main/trunk@8591 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src/mirandacontact.cpp')
-rw-r--r-- | plugins/HistoryStats/src/mirandacontact.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/HistoryStats/src/mirandacontact.cpp b/plugins/HistoryStats/src/mirandacontact.cpp index 4e9ddc482a..9549200179 100644 --- a/plugins/HistoryStats/src/mirandacontact.cpp +++ b/plugins/HistoryStats/src/mirandacontact.cpp @@ -193,7 +193,7 @@ void MirandaContactTolerantMerge::fillQueue() if (j_ei.hContact != ci.ei.hContact &&
timestampDelta >= -timestampTol && timestampDelta <= timestampTol &&
j_ei.dbe.eventType == ci.ei.dbe.eventType &&
- (j_ei.dbe.flags & ~(DBEF_FIRST | DBEF_READ)) == (ci.ei.dbe.flags & ~(DBEF_FIRST | DBEF_READ)) &&
+ (j_ei.dbe.flags & ~DBEF_READ) == (ci.ei.dbe.flags & ~DBEF_READ) &&
j_ei.dbe.cbBlob == ci.ei.dbe.cbBlob &&
memcmp(j_ei.dbe.pBlob, ci.ei.dbe.pBlob, j_ei.dbe.cbBlob) == 0) {
bIsDuplicate = true;
@@ -254,14 +254,14 @@ void MirandaContactStrictMerge::fillQueue() if (timestampDelta > 0)
insPos = j;
- if (j_ei.hContact != ci.ei.hContact &&
- timestampDelta >= -timestampTol && timestampDelta <= timestampTol &&
- j_ei.dbe.eventType == ci.ei.dbe.eventType &&
- (j_ei.dbe.flags & ~(DBEF_FIRST | DBEF_READ)) == (ci.ei.dbe.flags & ~(DBEF_FIRST | DBEF_READ)) &&
- j_ei.dbe.cbBlob == ci.ei.dbe.cbBlob &&
- memcmp(j_ei.dbe.pBlob, ci.ei.dbe.pBlob, j_ei.dbe.cbBlob) == 0) {
+ if (j_ei.hContact != ci.ei.hContact
+ && timestampDelta >= -timestampTol && timestampDelta <= timestampTol
+ && j_ei.dbe.eventType == ci.ei.dbe.eventType
+ && (j_ei.dbe.flags & ~DBEF_READ) == (ci.ei.dbe.flags & ~DBEF_READ)
+ && j_ei.dbe.cbBlob == ci.ei.dbe.cbBlob
+ && memcmp(j_ei.dbe.pBlob, ci.ei.dbe.pBlob, j_ei.dbe.cbBlob) == 0)
+ {
bIsDuplicate = true;
-
break;
}
}
|