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/FTPFileYM/src/job_generic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/FTPFileYM/src/job_generic.cpp') diff --git a/plugins/FTPFileYM/src/job_generic.cpp b/plugins/FTPFileYM/src/job_generic.cpp index e7a78e75a3..eac1b16c21 100644 --- a/plugins/FTPFileYM/src/job_generic.cpp +++ b/plugins/FTPFileYM/src/job_generic.cpp @@ -79,7 +79,7 @@ void GenericJob::getFilesFromOpenDialog() { TCHAR stzFile[MAX_PATH]; - size_t length = _tcslen(this->stzFilePath); + size_t length = mir_tstrlen(this->stzFilePath); if (this->stzFilePath[0] && this->stzFilePath[length+1]) // multiple files { TCHAR *ptr = this->stzFilePath + length + 1; @@ -87,7 +87,7 @@ void GenericJob::getFilesFromOpenDialog() { mir_sntprintf(stzFile, SIZEOF(stzFile), _T("%s\\%s"), this->stzFilePath, ptr); this->addFile(stzFile); - ptr += _tcslen(ptr) + 1; + ptr += mir_tstrlen(ptr) + 1; } } else -- cgit v1.2.3