diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-11-28 22:50:07 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-11-28 22:50:07 +0000 |
commit | 775d75ea539754c19e2d07dfb49dba83a120e8c3 (patch) | |
tree | 08505f50309561742777ad8622b9292bb50e610f /plugins/HistoryStats | |
parent | f2c22af9a436a319c8c824b5e374490ef33f445b (diff) |
-Fix for some random bug with metacontacts (maybe #821), reported in #837
git-svn-id: http://svn.miranda-ng.org/main/trunk@11144 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats')
-rw-r--r-- | plugins/HistoryStats/src/mirandacontact.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryStats/src/mirandacontact.cpp b/plugins/HistoryStats/src/mirandacontact.cpp index 9549200179..1029a6f612 100644 --- a/plugins/HistoryStats/src/mirandacontact.cpp +++ b/plugins/HistoryStats/src/mirandacontact.cpp @@ -41,7 +41,7 @@ void MirandaContact::fetchSlot(int i) void MirandaContact::stripMetaID(DBEVENTINFO& dbe)
{
- if (dbe.szModule == META_PROTO) {
+ if (strcmp(dbe.szModule,META_PROTO)) {
char* pTextBegin = reinterpret_cast<char*>(dbe.pBlob);
if (dbe.cbBlob >= 6 && !pTextBegin[dbe.cbBlob - 1]) {
|