From 67a8ad248d3517c9d74fc3c1909afcb4af0d7d6c Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 30 Dec 2014 22:43:22 +0000 Subject: memory corruption fix git-svn-id: http://svn.miranda-ng.org/main/trunk@11688 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/NewXstatusNotify/src/common.h | 2 +- plugins/NewXstatusNotify/src/popup.cpp | 15 ++++++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/plugins/NewXstatusNotify/src/common.h b/plugins/NewXstatusNotify/src/common.h index d19761c135..77af3b76f0 100644 --- a/plugins/NewXstatusNotify/src/common.h +++ b/plugins/NewXstatusNotify/src/common.h @@ -25,7 +25,6 @@ #pragma once #define STRICT -#define WIN32_LEAN_AND_MEAN #define _CRT_SECURE_NO_WARNINGS #define _WIN32_WINNT 0x0500 @@ -57,6 +56,7 @@ #include #include #include +#include #include #include diff --git a/plugins/NewXstatusNotify/src/popup.cpp b/plugins/NewXstatusNotify/src/popup.cpp index 13e13d4d08..f57710a6ee 100644 --- a/plugins/NewXstatusNotify/src/popup.cpp +++ b/plugins/NewXstatusNotify/src/popup.cpp @@ -25,19 +25,16 @@ void ShowChangePopup(MCONTACT hContact, HICON hIcon, WORD newStatus, TCHAR *stzT { POPUPDATAT ppd = { 0 }; ppd.lchContact = hContact; - ppd.lchIcon = hIcon;//LoadSkinnedProtoIcon(szProto, iconStatus); - _tcsncpy(ppd.lptzContactName, (TCHAR *)CallService(MS_CLIST_GETCONTACTDISPLAYNAME, hContact, GSMDF_TCHAR), MAX_CONTACTNAME); + ppd.lchIcon = hIcon; + CMString buf((TCHAR *)CallService(MS_CLIST_GETCONTACTDISPLAYNAME, hContact, GSMDF_TCHAR)); // add group name to popup title if (opt.ShowGroup) { - DBVARIANT dbv; - if (!db_get_ts(hContact, "CList", "Group", &dbv)) { - _tcsncat(ppd.lptzContactName, _T(" ("), MAX_CONTACTNAME); - _tcsncat(ppd.lptzContactName, dbv.ptszVal, MAX_CONTACTNAME); - _tcsncat(ppd.lptzContactName, _T(")"), MAX_CONTACTNAME); - db_free(&dbv); - } + ptrT tszGroup(db_get_tsa(hContact, "CList", "Group")); + if (tszGroup) + buf.AppendFormat(_T(" (%s)"), tszGroup); } + _tcsncpy_s(ppd.lptzContactName, buf, _TRUNCATE); _tcsncpy(ppd.lptzText, stzText, MAX_SECONDLINE); -- cgit v1.2.3