From 688f55ba998c19304a29727c910504903f4cc49a Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 30 Nov 2014 18:51:36 +0000 Subject: lstr* replacements git-svn-id: http://svn.miranda-ng.org/main/trunk@11176 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/stdemail/email.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/stdemail/email.cpp') diff --git a/src/core/stdemail/email.cpp b/src/core/stdemail/email.cpp index 23ae28da48..d73786d379 100644 --- a/src/core/stdemail/email.cpp +++ b/src/core/stdemail/email.cpp @@ -42,9 +42,9 @@ static INT_PTR SendEMailCommand(WPARAM hContact, LPARAM lParam) return 1; } } - char *szUrl = (char*)mir_alloc(lstrlenA(dbv.pszVal)+8); - lstrcpyA(szUrl, "mailto:"); - lstrcatA(szUrl, dbv.pszVal); + char *szUrl = (char*)mir_alloc(mir_strlen(dbv.pszVal)+8); + mir_strcpy(szUrl, "mailto:"); + mir_strcat(szUrl, dbv.pszVal); mir_free(dbv.pszVal); forkthread(SendEmailThread, 0, szUrl); return 0; -- cgit v1.2.3