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/Scriver/src/msglog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Scriver/src/msglog.cpp') diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 6b1e473fd8..8c5c4e020a 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -254,7 +254,7 @@ static void freeEvent(EventData *evt) static int AppendUnicodeOrAnsiiToBufferL(char *&buffer, size_t &cbBufferEnd, size_t &cbBufferAlloced, const WCHAR *line, size_t maxLen, BOOL isAnsii) { if (maxLen == -1) - maxLen = wcslen(line); + maxLen = mir_wstrlen(line); const WCHAR *maxLine = line + maxLen; size_t lineLen = maxLen*9 + 8; @@ -503,7 +503,7 @@ static void AppendWithCustomLinks(EventData *evt, int style, char *&buffer, size } else { wText = evt->pszTextW; - len = (int)wcslen(evt->pszTextW); + len = (int)mir_wstrlen(evt->pszTextW); } for (size_t j = 0; j < len; j++) { int newtoken = 0; -- cgit v1.2.3