From 5aed15a8d8d8e4f913539761be496e0d1ba2c4f0 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 24 May 2015 12:20:50 +0000 Subject: replace wcslen to mir_wstrlen git-svn-id: http://svn.miranda-ng.org/main/trunk@13813 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirFox/src/MirfoxMiranda.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/MirFox') diff --git a/plugins/MirFox/src/MirfoxMiranda.cpp b/plugins/MirFox/src/MirfoxMiranda.cpp index b0984d3b66..bbe1819862 100644 --- a/plugins/MirFox/src/MirfoxMiranda.cpp +++ b/plugins/MirFox/src/MirfoxMiranda.cpp @@ -340,7 +340,7 @@ void CMirfoxMiranda::msgQueueThread(void* threadArg) strcpy_s(accountSzModuleName, mnSize, mirandaAccountsIter->szModuleName); actionThreadArgPtr->accountSzModuleName = accountSzModuleName; - std::size_t uasSize = wcslen(userActionSelection) + 1; + std::size_t uasSize = mir_wstrlen(userActionSelection) + 1; actionThreadArgPtr->userActionSelection = new wchar_t[uasSize]; memset(actionThreadArgPtr->userActionSelection, 0, uasSize * sizeof(wchar_t)); wcsncpy_s(actionThreadArgPtr->userActionSelection, uasSize, userActionSelection, uasSize - 1); @@ -368,7 +368,7 @@ void CMirfoxMiranda::msgQueueThread(void* threadArg) actionThreadArgPtr->accountSzModuleName = mirfoxDataPtr->getAccountSzModuleNameById(targetHandle); } - std::size_t uasSize = wcslen(userActionSelection) + 1; + std::size_t uasSize = mir_wstrlen(userActionSelection) + 1; actionThreadArgPtr->userActionSelection = new wchar_t[uasSize]; memset(actionThreadArgPtr->userActionSelection, 0, uasSize * sizeof(wchar_t)); wcsncpy_s(actionThreadArgPtr->userActionSelection, uasSize, userActionSelection, uasSize - 1); -- cgit v1.2.3