From b499ebc740aa5480be013d40e0d8097066800642 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Fri, 22 May 2015 10:18:21 +0000 Subject: replace _tcslen to mir_tstrlen git-svn-id: http://svn.miranda-ng.org/main/trunk@13748 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/HistoryLinkListPlus/src/linklist_dlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/HistoryLinkListPlus/src/linklist_dlg.cpp') diff --git a/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp b/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp index a163166dd6..07da9e4f59 100644 --- a/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp +++ b/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp @@ -177,7 +177,7 @@ INT_PTR CALLBACK MainDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) break; EmptyClipboard(); - dataLen = (_tcslen(link) + 1) * sizeof(TCHAR); + dataLen = (mir_tstrlen(link) + 1) * sizeof(TCHAR); hData = GlobalAlloc(GMEM_MOVEABLE, dataLen); _tcscpy_s((LPTSTR)GlobalLock(hData), dataLen / 2, link); GlobalUnlock(hData); -- cgit v1.2.3