From 6fcfba2c46a456677b5825a899469ba4e8905448 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 23 May 2015 17:49:58 +0000 Subject: replace strncpy to mir_strncpy git-svn-id: http://svn.miranda-ng.org/main/trunk@13785 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Non-IM Contact/src/namereplacing.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Non-IM Contact/src') diff --git a/plugins/Non-IM Contact/src/namereplacing.cpp b/plugins/Non-IM Contact/src/namereplacing.cpp index 3028cf5f2c..40d6b050fd 100644 --- a/plugins/Non-IM Contact/src/namereplacing.cpp +++ b/plugins/Non-IM Contact/src/namereplacing.cpp @@ -46,8 +46,8 @@ int findWordInString(const char* line, const char* string, int* lengthOfWord, in { unsigned int i, j = 0; char word[64] = "", OpenDivider[8], CloseDivider[8]; - strncpy(OpenDivider, "(\"", sizeof(OpenDivider)); - strncpy(CloseDivider, "\")", sizeof(CloseDivider)); + mir_strncpy(OpenDivider, "(\"", sizeof(OpenDivider)); + mir_strncpy(CloseDivider, "\")", sizeof(CloseDivider)); /* get the word we r looking for */ if (!strncmp(string, OpenDivider, mir_strlen(OpenDivider))) { for (i = 2; strncmp(&string[i], CloseDivider, mir_strlen(CloseDivider)); i++) { @@ -455,8 +455,8 @@ int stringReplacer(const char* oldString, char* newString, MCONTACT hContact) char *fileContents[MAXLINES] = { NULL }, tempString[MAX_STRING_LENGTH]; // setup the variable names - strncpy(newString, "", sizeof(newString)); - strncpy(var_file, "file(", sizeof(var_file)); + mir_strncpy(newString, "", sizeof(newString)); + mir_strncpy(var_file, "file(", sizeof(var_file)); while ((positionInOldString < (int)mir_strlen(oldString)) && (oldString[positionInOldString] != '\0')) { // load the file... must be first -- cgit v1.2.3