From a8a11e811c3c0cc3f6d74c18c89841e9e0e87237 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sun, 30 Nov 2014 04:29:19 +0000 Subject: Multiple fixes buff size for GetText and SetText. git-svn-id: http://svn.miranda-ng.org/main/trunk@11165 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_modern/src/modern_skinopt.cpp | 4 ++-- plugins/Clist_modern/src/modern_viewmodebar.cpp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/Clist_modern') diff --git a/plugins/Clist_modern/src/modern_skinopt.cpp b/plugins/Clist_modern/src/modern_skinopt.cpp index a6611a96c8..2079a2d222 100644 --- a/plugins/Clist_modern/src/modern_skinopt.cpp +++ b/plugins/Clist_modern/src/modern_skinopt.cpp @@ -446,8 +446,8 @@ HTREEITEM FindChild( HWND hTree, HTREEITEM Parent, TCHAR * Caption, void * data TCHAR buf[255]; tvi.hItem = tmp; tvi.mask = TVIF_TEXT|TVIF_HANDLE; - tvi.pszText = (LPTSTR)&buf; - tvi.cchTextMax = 254; + tvi.pszText = buf; + tvi.cchTextMax = SIZEOF(buf); TreeView_GetItem( hTree, &tvi ); if ( _tcsicmp(Caption, tvi.pszText) == 0) { if (!data) diff --git a/plugins/Clist_modern/src/modern_viewmodebar.cpp b/plugins/Clist_modern/src/modern_viewmodebar.cpp index b9a9e2b949..d32a94710d 100644 --- a/plugins/Clist_modern/src/modern_viewmodebar.cpp +++ b/plugins/Clist_modern/src/modern_viewmodebar.cpp @@ -402,7 +402,7 @@ void SaveState() if (ListView_GetCheckState(hwndList, i)) { item.mask = LVIF_TEXT; item.pszText = szTemp; - item.cchTextMax = 255; + item.cchTextMax = SIZEOF(szTemp); item.iItem = i; SendMessageA(hwndList, LVM_GETITEMA, 0, (LPARAM)&item); strncat(newProtoFilter, szTemp, SIZEOF(newProtoFilter)); @@ -423,7 +423,7 @@ void SaveState() if (ListView_GetCheckState(hwndList, i)) { item.mask = LVIF_TEXT; item.pszText = szTemp; - item.cchTextMax = 255; + item.cchTextMax = SIZEOF(szTemp); item.iItem = i; SendMessage(hwndList, LVM_GETITEM, 0, (LPARAM)&item); _tcsncat(newGroupFilter, szTemp, SIZEOF(newGroupFilter)); @@ -549,7 +549,7 @@ static void UpdateFilters() item.mask = LVIF_TEXT; item.pszText = szTemp; - item.cchTextMax = 255; + item.cchTextMax = SIZEOF(szTemp); for (i=0; i < ListView_GetItemCount(hwndList); i++) { @@ -571,7 +571,7 @@ static void UpdateFilters() item.mask = LVIF_TEXT; item.pszText = szTemp; - item.cchTextMax = 255; + item.cchTextMax = SIZEOF(szTemp); ListView_SetCheckState(hwndList, 0, dwFlags & CLVM_INCLUDED_UNGROUPED ? TRUE : FALSE); -- cgit v1.2.3